updated CMakeList.txts a bit
authorPerttu Ahola <celeron55@gmail.com>
Sat, 30 Jul 2011 21:51:18 +0000 (00:51 +0300)
committerPerttu Ahola <celeron55@gmail.com>
Sat, 30 Jul 2011 21:51:18 +0000 (00:51 +0300)
CMakeLists.txt
src/CMakeLists.txt

index dc6f45a59e6d8532a436dd1e198f6647fa250370..514175e9ec69f5b79e775088f7e37bbc11890d8f 100644 (file)
@@ -21,7 +21,11 @@ else()
 endif()
 
 set(BUILD_CLIENT 1 CACHE BOOL "Build client")
-set(BUILD_SERVER 1 CACHE BOOL "Build server")
+if(WIN32)
+       set(BUILD_SERVER 0 CACHE BOOL "Build server")
+else()
+       set(BUILD_SERVER 1 CACHE BOOL "Build server")
+endif()
 
 set(WARN_ALL 1 CACHE BOOL "Enable -Wall for Release build")
 
@@ -60,6 +64,7 @@ elseif(UNIX) # Linux, BSD etc
 endif()
 
 install(FILES "doc/README.txt" DESTINATION "${DOCDIR}")
+install(FILES "doc/changelog.txt" DESTINATION "${DOCDIR}")
 install(FILES "minetest.conf.example" DESTINATION "${DOCDIR}")
 
 #
index 9bb2667842a2031bb21be1fedf45a4f5d4bef98e..4d51f7104c966c2e723c50a6e3b7b2df0d592f72 100644 (file)
@@ -130,7 +130,7 @@ set(common_SRCS
 
 # This gives us the icon
 if(WIN32 AND MSVC)
-    set(common_SRCS ${common_SRCS} winresource.rc)
+       set(common_SRCS ${common_SRCS} winresource.rc)
 endif()
 
 # Client sources