X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=CMakeLists.txt;h=15f4a64534c895f4764a112ac3f12fc05824e7a3;hb=84b85964fac715d03fef7094d2cdcd5945cb0dd2;hp=106975a67c878644a4b525cfe5d74bd0d201c1f5;hpb=359e575ba377fa83317cd733f0c5eefdc0a8ff59;p=dragonfireclient.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 106975a67..15f4a6453 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,13 +8,17 @@ endif(${CMAKE_VERSION} STREQUAL "2.8.2") project(minetest) set(VERSION_MAJOR 0) -set(VERSION_MINOR 0) -set(VERSION_PATCH 1) +set(VERSION_MINOR 2) +set(VERSION_PATCH 20110704_0) set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}") # Configuration options -set(RUN_IN_PLACE 0 CACHE BOOL "Run directly in source directory structure") +if(WIN32) + set(RUN_IN_PLACE 1 CACHE BOOL "Run directly in source directory structure") +else() + set(RUN_IN_PLACE 0 CACHE BOOL "Run directly in source directory structure") +endif() set(BUILD_CLIENT 1 CACHE BOOL "Build client") set(BUILD_SERVER 1 CACHE BOOL "Build server") @@ -41,14 +45,18 @@ if(WIN32) set(DATADIR "data") set(BINDIR "bin") set(DOCDIR "doc") + set(EXAMPLE_CONF_DIR ".") elseif(APPLE) + # random placeholders set(DATADIR "share/minetest") set(BINDIR "bin") set(DOCDIR "share/doc/minetest") -elseif(UNIX) + set(EXAMPLE_CONF_DIR ".") +elseif(UNIX) # Linux, BSD etc set(DATADIR "share/minetest") set(BINDIR "bin") set(DOCDIR "share/doc/minetest") + set(EXAMPLE_CONF_DIR "share/doc/minetest") endif() install(FILES "doc/README.txt" DESTINATION "${DOCDIR}") @@ -68,15 +76,17 @@ set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR}) set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR}) set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}) set(CPACK_PACKAGE_VENDOR "celeron55") +set(CPACK_PACKAGE_CONTACT "Perttu Ahola ") if(WIN32) # For some reason these aren't copied otherwise - if(BUILD_CLIENT) - install(FILES bin/minetest.exe DESTINATION bin) - endif() - if(BUILD_SERVER) - install(FILES bin/minetestserver.exe DESTINATION bin) - endif() + # NOTE: For some reason now it seems to work without these + #if(BUILD_CLIENT) + # install(FILES bin/minetest.exe DESTINATION bin) + #endif() + #if(BUILD_SERVER) + # install(FILES bin/minetestserver.exe DESTINATION bin) + #endif() set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-win32") @@ -87,7 +97,6 @@ if(WIN32) elseif(APPLE) # TODO # see http://cmake.org/Wiki/CMake:CPackPackageGenerators#Bundle_.28OSX_only.29 - # this too http://0xfe.blogspot.com/2006/03/how-os-x-executes-applications.html # set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-osx") set(CPACK_PACKAGE_ICON "") @@ -95,7 +104,7 @@ elseif(APPLE) set(CPACK_BUNDLE_ICON "") set(CPACK_BUNDLE_PLIST "") set(CPACK_BUNDLE_STARTUP_COMMAND "Contents/MacOS/minetest") - set(CPACK_GENERATOR BUNDLE) + set(CPACK_GENERATOR "Bundle") else() set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-linux") set(CPACK_GENERATOR TGZ)