Author: esr
Date: Sun Mar 23 01:23:37 2008
New Revision: 24998
URL: http://svn.gna.org/viewcvs/wesnoth?rev=24998&view=rev
Log:
Eliminate another warning.
Modified:
trunk/src/SConstruct
Modified: trunk/src/SConstruct
URL:
http://svn.gna.org/viewcvs/wesnoth/trunk/src/SConstruct?rev=24998&r1=24997&r2=24998&view=diff
==============================================================================
--- trunk/src/SConstruct (original)
+++ trunk/src/SConstruct Sun Mar 23 01:23:37 2008
@@ -91,6 +91,12 @@
]
env.Library("wesnoth", libwesnoth_sources,
CPPPATH = ['.', 'src/serialization', "/usr/include/SDL"])
+
+libwesnothd_sources = [
+ "loadscreen_empty.cpp",
+ ]
+env.Library("wesnothd", libwesnothd_sources,
+ CPPPATH = ['.', "/usr/include/SDL"])
wesnoth_sources = [
"about.cpp",
@@ -183,11 +189,10 @@
campaignd_sources = [
"campaign_server/campaign_server.cpp",
"publish_campaign.cpp",
- "loadscreen_empty.cpp",
]
env.Program("campaignd", campaignd_sources,
CPPPATH = ['.', 'server', "/usr/include/SDL"],
- LIBS = ['wesnoth_core', 'wesnoth'] + commonlibs,
+ LIBS = ['wesnoth_core', 'wesnothd', 'wesnoth'] + commonlibs,
LIBPATH = [".", "/lib", "/usr/lib"])
wesnothd_sources = [
@@ -198,11 +203,10 @@
"server/proxy.cpp",
"server/server.cpp",
"server/simple_wml.cpp",
- "loadscreen_empty.cpp"
]
env.Program("wesnothd", wesnothd_sources,
CPPPATH = ['.', 'server', "/usr/include/SDL"],
- LIBS = ['wesnoth_core'] + commonlibs,
+ LIBS = ['wesnoth_core', 'wesnothd'] + commonlibs,
LIBPATH = [".", "/lib", "/usr/lib"])
# FIXME: Include this in gameconfig.cpp when we switch over to scons.
_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits