CMakeLists.txt
author unc0rr
Sun, 20 Aug 2006 19:22:12 +0000
changeset 123 6987769ced3d
parent 99 fd9613278d1b
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Various small fixes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
73
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     1
project(hedgewars)
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     2
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     3
cmake_minimum_required(VERSION 2.4.0)
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     4
98
f1d252c234ec Repair build system
unc0rr
parents: 91
diff changeset
     5
set(SHAREPATH share/hedgewars/)
f1d252c234ec Repair build system
unc0rr
parents: 91
diff changeset
     6
73
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     7
add_subdirectory(QTfrontend)
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents:
diff changeset
     8
add_subdirectory(hedgewars)
98
f1d252c234ec Repair build system
unc0rr
parents: 91
diff changeset
     9
add_subdirectory(share)
91
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    10
99
fd9613278d1b - On windows make packages with all needed dlls
unc0rr
parents: 98
diff changeset
    11
if(WIN32 AND NOT UNIX)
fd9613278d1b - On windows make packages with all needed dlls
unc0rr
parents: 98
diff changeset
    12
	add_subdirectory(bin)
fd9613278d1b - On windows make packages with all needed dlls
unc0rr
parents: 98
diff changeset
    13
endif(WIN32 AND NOT UNIX)
fd9613278d1b - On windows make packages with all needed dlls
unc0rr
parents: 98
diff changeset
    14
91
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    15
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a turn-based strategy")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    16
set(CPACK_PACKAGE_VENDOR "Hedgewars")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    17
set(CPACK_PACKAGE_VERSION_MAJOR "0")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    18
set(CPACK_PACKAGE_VERSION_MINOR "2")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    19
set(CPACK_PACKAGE_VERSION_PATCH "0")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    20
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    21
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hwengine")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    22
#set(CPACK_RESOURCE_FILE_LICENSE "COPYING.txt")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    23
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    24
if(WIN32 AND NOT UNIX)
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    25
	set(CPACK_NSIS_DISPLAY_NAME "Hedgewars, a cross-platform, open-source turn-based Worms-like strategy")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    26
	set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    27
	set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    28
	set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    29
	set(CPACK_NSIS_MODIFY_PATH ON)
123
6987769ced3d Various small fixes
unc0rr
parents: 99
diff changeset
    30
	set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars") 
91
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    31
else(WIN32 AND NOT UNIX)
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    32
	set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine")
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    33
endif(WIN32 AND NOT UNIX)
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    34
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    35
include(CPack)
5688d2141464 oops, forgot to commit a file
unc0rr
parents: 73
diff changeset
    36