CMakeLists.txt
author Bryan Dunsmore <dunsmoreb@gmail.com>
Fri, 30 Nov 2012 21:28:40 -0600
branchwebgl
changeset 8111 4307de8780fa
parent 8102 20ef5bf0dc7f
child 8113 0ad9c42dca7c
permissions -rw-r--r--
Move version check of Clang to CMakeLists.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
     1
project(hedgewars)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
     2
5407
486231e82e8d typo and spaces
koda
parents: 5405
diff changeset
     3
#initialise cmake environment
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1459
diff changeset
     4
cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR)
8087
ccc99eebdac2 little cmake cleanup, search installed modules first, then our own
koda
parents: 8082
diff changeset
     5
cmake_policy(VERSION 2.6)
ccc99eebdac2 little cmake cleanup, search installed modules first, then our own
koda
parents: 8082
diff changeset
     6
FOREACH(hwpolicy CMP0003 CMP0012 CMP0017)
8089
56bf04303311 Bad unC0Rr
koda
parents: 8088
diff changeset
     7
    IF(POLICY ${hwpolicy})
8088
55f99b65e795 Bad koda!
unc0rr
parents: 8087
diff changeset
     8
        CMAKE_POLICY(SET ${hwpolicy} NEW)
55f99b65e795 Bad koda!
unc0rr
parents: 8087
diff changeset
     9
    ENDIF()
5169
e353ca78d28b some comments and simplifications for cmake files
koda
parents: 5168
diff changeset
    10
ENDFOREACH()
8087
ccc99eebdac2 little cmake cleanup, search installed modules first, then our own
koda
parents: 8082
diff changeset
    11
#use available modules, fallback to ours if not present (CMP0017 helps)
ccc99eebdac2 little cmake cleanup, search installed modules first, then our own
koda
parents: 8082
diff changeset
    12
set(CMAKE_MODULE_PATH "${CMAKE_ROOT}/Modules" "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules")
5405
5b17e1b3e0d5 better variable grouping...
koda
parents: 5223
diff changeset
    13
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    14
#set some default values
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    15
option(NOREVISION "Build Hedgewars without revision information" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    16
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    17
option(NOSERVER "Disable gameServer build [default: auto]" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    18
option(NOPNG "Disable screenshoot compression [default: auto]" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    19
option(NOVIDEOREC "Disable video recording [default: auto]" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    20
8096
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
    21
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
    22
option(WEBGL "Enable WebGL build (implies NOPASCAL) [default: off]" OFF)
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
    23
option(NOPASCAL "Compile hwengine as native C [default: off]" ${WEBGL})
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
    24
option(LIBENGINE "Enable hwengine library [default: off]" OFF)
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
    25
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    26
option(ANDROID "Enable Android build [default: off]" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    27
option(NOAUTOUPDATE "Disable OS X Sparkle update checking" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    28
option(CROSSAPPLE "Enable OSX when not on OSX [default: off]" OFF)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    29
option(MINIMAL_FLAGS "Respect system flags as much as possible [default: off]" OFF)
1107
ee873ada9e86 Supress CMake warning
unc0rr
parents: 1074
diff changeset
    30
ee873ada9e86 Supress CMake warning
unc0rr
parents: 1074
diff changeset
    31
4252
13ec087713dd raised version number
koda
parents: 4098
diff changeset
    32
#detect Mercurial revision (if present)
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    33
IF(NOT NOREVISION)
7709
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
    34
    set(default_build_type "DEBUG")
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    35
    set(version_suffix "-development_version")
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    36
    set(HW_DEV true)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    37
    FIND_PROGRAM(HGCOMMAND hg)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    38
    IF(HGCOMMAND AND (EXISTS ${CMAKE_SOURCE_DIR}/.hg))
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    39
        execute_process(COMMAND ${HGCOMMAND} identify -in
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    40
                        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    41
                        OUTPUT_VARIABLE internal_version
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    42
                        ERROR_QUIET
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    43
                    )
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    44
        #check local repo status
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    45
        STRING(REGEX REPLACE "[^+]" "" HGCHANGED ${internal_version})
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    46
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    47
        STRING(REGEX REPLACE "[0-9a-zA-Z]+(.*) ([0-9]+)(.*)" "\\2" revision_number ${internal_version})
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    48
        STRING(REGEX REPLACE "([0-9a-zA-Z]+)(.*) [0-9]+(.*)" "\\1" revision_hash ${internal_version})
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    49
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    50
        MESSAGE(STATUS "Building revision ${revision_number} from hash ${revision_hash} ${HGCHANGED}")
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    51
        IF(HGCHANGED)
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
    52
            MESSAGE(WARNING "Notice: you have uncommitted changes in your repository")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    53
        ENDIF()
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    54
        set(version_suffix "-${revision_number}${HGCHANGED}")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    55
    ENDIF()
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    56
ELSE(NOT NOREVISION)
7709
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
    57
    set(default_build_type "RELEASE")
8090
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    58
    set(HWDEV false)
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    59
    MESSAGE(STATUS "Building distributable version")
38d9cc60b14c cleanup revision section, make hg launch tolerant to config errors, drop deprecated exec_prog for desktop configuration in favour of execute_process
koda
parents: 8089
diff changeset
    60
ENDIF(NOT NOREVISION)
2672
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    61
1107
ee873ada9e86 Supress CMake warning
unc0rr
parents: 1074
diff changeset
    62
5405
5b17e1b3e0d5 better variable grouping...
koda
parents: 5223
diff changeset
    63
#versioning
5407
486231e82e8d typo and spaces
koda
parents: 5405
diff changeset
    64
set(CPACK_PACKAGE_VERSION_MAJOR 0)
486231e82e8d typo and spaces
koda
parents: 5405
diff changeset
    65
set(CPACK_PACKAGE_VERSION_MINOR 9)
7960
99d5af6997dd bad koda
nemo
parents: 7933
diff changeset
    66
set(CPACK_PACKAGE_VERSION_PATCH 19${version_suffix})
99d5af6997dd bad koda
nemo
parents: 7933
diff changeset
    67
set(HEDGEWARS_PROTO_VER 44)
5407
486231e82e8d typo and spaces
koda
parents: 5405
diff changeset
    68
set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
8111
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    69
SET(REQUIRED_CLANG_VERSION 3.0)
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    70
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    71
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    72
# Check LLVM/Clang version
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    73
FIND_PACKAGE(Clang)
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    74
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    75
IF (CLANG_VERSION VERSION_GREATER REQUIRED_CLANG_VERSION
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    76
    OR CLANG_VERSION VERSION_EQUAL REQUIRED_CLANG_VERSION)
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    77
    MESSAGE(STATUS "Found CLANG: ${CLANG_EXECUTABLE} (version ${CLANG_VERSION})")
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    78
ELSE()
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    79
    MESSAGE(FATAL_ERROR "Necessary LLVM/Clang version not found (version >= ${REQUIRED_CLANG_VERSION} required)")
4307de8780fa Move version check of Clang to CMakeLists.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8102
diff changeset
    80
ENDIF()
5405
5b17e1b3e0d5 better variable grouping...
koda
parents: 5223
diff changeset
    81
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
    82
5405
5b17e1b3e0d5 better variable grouping...
koda
parents: 5223
diff changeset
    83
#bundle .app setup
7256
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    84
if(APPLE OR CROSSAPPLE)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    85
    #paths for creating the bundle
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    86
    set(bundle_name Hedgewars.app)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    87
    set(frameworks_dir ${bundle_name}/Contents/Frameworks/)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    88
    set(CMAKE_INSTALL_PREFIX ${bundle_name}/Contents/MacOS/)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    89
    set(DATA_INSTALL_DIR "../Resources/")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    90
    set(target_dir ".")
7256
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    91
    set(minimum_macosx_version "10.6")
7718
97ba379164ec use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents: 7709
diff changeset
    92
else()
97ba379164ec use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents: 7709
diff changeset
    93
    set(target_dir "bin")
7256
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    94
endif()
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    95
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    96
if(APPLE)
5b97b9946cde CROSSAPPLE ftw
koda
parents: 7233
diff changeset
    97
    set(CMAKE_FIND_FRAMEWORK "FIRST")
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
    98
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
    99
    #what system are we building for
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   100
    set(minimum_macosx_version $ENV{MACOSX_DEPLOYMENT_TARGET})
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3677
diff changeset
   101
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   102
    #detect on which system we are: if sw_vers cannot be found for any reason (re)use minimum_macosx_version
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   103
    find_program(sw_vers sw_vers)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   104
    if(sw_vers)
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   105
        execute_process(COMMAND ${sw_vers} "-productVersion"
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   106
                        OUTPUT_VARIABLE current_macosx_version
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   107
                        OUTPUT_STRIP_TRAILING_WHITESPACE)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   108
        string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" current_macosx_version ${current_macosx_version})
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   109
    else()
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   110
        if(NOT minimum_macosx_version)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   111
            message(FATAL_ERROR "sw_vers not found! Need explicit MACOSX_DEPLOYMENT_TARGET variable set")
7114
e0110a1229b7 add NOPNG to cmake to explicitly disable PNG dependency
koda
parents: 7113
diff changeset
   112
        else()
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   113
            message(WARNING "sw_vers not found! Fallback to MACOSX_DEPLOYMENT_TARGET variable")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   114
            set(current_macosx_version ${minimum_macosx_version})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   115
        endif()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   116
    endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   117
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   118
    #if nothing is set, we deploy only for the current system
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   119
    if(NOT minimum_macosx_version)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   120
        set(minimum_macosx_version ${current_macosx_version})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   121
    endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   122
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   123
    #lower systems don't have enough processing power anyway
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   124
    if (minimum_macosx_version LESS "10.4")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   125
        message(FATAL_ERROR "Hedgewars is not supported on Mac OS X pre-10.4")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   126
    endif()
2929
dd4efe601bc6 restore tiger 10.4 deployment
koda
parents: 2834
diff changeset
   127
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   128
    #workaround for http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html#SDL_mixer (Update 2)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   129
    if(current_macosx_version MATCHES "10.4")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   130
        find_package(SDL_mixer REQUIRED)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   131
        set(DYLIB_SMPEG "-dylib_file @loader_path/Frameworks/smpeg.framework/Versions/A/smpeg:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   132
        set(DYLIB_MIKMOD "-dylib_file @loader_path/Frameworks/mikmod.framework/Versions/A/mikmod:${SDLMIXER_LIBRARY}/Versions/A/Frameworks/mikmod.framework/Versions/A/mikmod")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   133
        set(pascal_flags "-k${DYLIB_SMPEG}" "-k${DYLIB_MIKMOD}" ${pascal_flags})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   134
        set(CMAKE_C_FLAGS "${DYLIB_SMPEG}" "${DYLIB_MIKMOD}" ${CMAKE_C_FLAGS})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   135
    endif()
7114
e0110a1229b7 add NOPNG to cmake to explicitly disable PNG dependency
koda
parents: 7113
diff changeset
   136
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   137
    #CMAKE_OSX_ARCHITECTURES and CMAKE_OSX_SYSROOT need to be set for universal binary and correct linking
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   138
    if(NOT CMAKE_OSX_ARCHITECTURES)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   139
        if(current_macosx_version LESS "10.6")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   140
            if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "powerpc*")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   141
                set(CMAKE_OSX_ARCHITECTURES "ppc7400")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   142
            else()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   143
                set(CMAKE_OSX_ARCHITECTURES "i386")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   144
            endif()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   145
        else()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   146
            set(CMAKE_OSX_ARCHITECTURES "x86_64")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   147
        endif()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   148
    endif()
5053
a767954cfa03 this should help people hacking the cmake files
koda
parents: 4904
diff changeset
   149
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   150
    #CMAKE_OSX_SYSROOT is set at the system version we are supposed to build on
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   151
    #we need to provide the correct one when host and target differ
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   152
    if(NOT ${minimum_macosx_version} MATCHES ${current_macosx_version})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   153
        if(minimum_macosx_version MATCHES "10.4")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   154
            set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   155
            set(CMAKE_C_COMPILER "gcc-4.0")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   156
            set(CMAKE_CXX_COMPILER "g++-4.0")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   157
        else()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   158
            string(REGEX REPLACE "([0-9]+.[0-9]+).[0-9]+" "\\1" sdk_version ${minimum_macosx_version})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   159
            set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${sdk_version}.sdk/")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   160
        endif()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   161
    endif()
2641
b08cafb86797 some tweaks in the mac compilation system
koda
parents: 2629
diff changeset
   162
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   163
    #add user framework directory, other paths can be passed via FPFLAGS
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   164
    set(pascal_flags "-Ff~/Library/Frameworks" ${pascal_flags})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   165
    #set deployment target
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   166
    set(pascal_flags "-k-macosx_version_min" "-k${minimum_macosx_version}" "-XR${CMAKE_OSX_SYSROOT}" ${pascal_flags})
5188
d0461bd6d45b some updates to the crossbuild system for mac
koda
parents: 5173
diff changeset
   167
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   168
    message(STATUS "Build system: Mac OS X ${current_macosx_version} with C compiler: ${CMAKE_C_COMPILER}")
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   169
    message(STATUS "Target system: Mac OS X ${minimum_macosx_version} for architecture(s): ${CMAKE_OSX_ARCHITECTURES}")
2015
d2848d723690 koda's patch
unc0rr
parents: 2005
diff changeset
   170
endif(APPLE)
d2848d723690 koda's patch
unc0rr
parents: 2005
diff changeset
   171
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2401
diff changeset
   172
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   173
#when build type is not specified, assume Debug/Release according to build version information
7709
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   174
if (CMAKE_BUILD_TYPE)
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   175
    string (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE)
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   176
    if ( NOT( (CMAKE_BUILD_TYPE MATCHES "RELEASE") OR (CMAKE_BUILD_TYPE MATCHES "DEBUG") ) )
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   177
        set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Only 'Debug' or 'Release' options are allowed." FORCE)
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   178
        message (STATUS "Unknown build type, using default (${default_build_type})")
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   179
    endif ()
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   180
else (CMAKE_BUILD_TYPE)
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   181
    set (CMAKE_BUILD_TYPE ${default_build_type} CACHE STRING "Choose the build type, options are: Debug Release." FORCE)
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   182
endif (CMAKE_BUILD_TYPE)
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   183
7944
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   184
#set default flags values for all projects (unless MINIMAL_FLAGS is true)
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   185
if(NOT MINIMAL_FLAGS)
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   186
    set(CMAKE_C_FLAGS "-pipe")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   187
    set(CMAKE_C_FLAGS_RELEASE "-w -Os -fomit-frame-pointer")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   188
    set(CMAKE_C_FLAGS_DEBUG "-Wall -O0 -g -DDEBUG")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   189
    set(CMAKE_CXX_FLAGS ${CMAKE_C_FLAGS})
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   190
    set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE})
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   191
    set(CMAKE_CXX_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG})
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   192
else()
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   193
    #CMake adds a lot of additional configuration flags, so let's clear them up
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   194
    set(CMAKE_C_FLAGS_RELEASE "")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   195
    set(CMAKE_C_FLAGS_DEBUG "-Wall -DDEBUG")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   196
    set(CMAKE_CXX_FLAGS_RELEASE "")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   197
    set(CMAKE_CXX_FLAGS_DEBUG "-Wall -DDEBUG")
a94f4ef5ba2b play nicer with system flags
hasufell
parents: 7933
diff changeset
   198
endif()
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   199
7397
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   200
#parse additional parameters
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   201
if(FPFLAGS OR GHFLAGS)
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   202
    math(EXPR cmake_version "${CMAKE_MAJOR_VERSION}*10000 + ${CMAKE_MINOR_VERSION}*100 + ${CMAKE_PATCH_VERSION}")
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   203
    if(cmake_version LESS "020800")
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   204
        message(STATUS "FPFLAGS and GHFLAGS are available only when using CMake >= 2.8")
7397
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   205
    else()
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   206
        separate_arguments(fpflags_parsed UNIX_COMMAND ${FPFLAGS})
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   207
        separate_arguments(ghflags_parsed UNIX_COMMAND ${GHFLAGS})
7397
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   208
    endif()
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   209
endif()
833fc211ca2d allow FPFLAGS and GHFLAGS only in cmakes able to support them
koda
parents: 7264
diff changeset
   210
7816
a25e943dd4b0 finally videorec on osx
koda
parents: 7807
diff changeset
   211
set(pascal_flags ${fpflags_parsed} "-vm4079,4080,4081" "-B" "-FE../bin" "-Cs2000000" "-vewnq" "-dDEBUGFILE" ${pascal_flags})
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   212
set(haskell_flags "-O2" ${ghflags_parsed} ${haskell_flags})
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   213
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   214
#get BUILD_TYPE and enable/disable optimisation
7709
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   215
if(CMAKE_BUILD_TYPE MATCHES "DEBUG")
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   216
    message(STATUS "Building Debug flavour")
7820
c1b491e03362 Restore -gv, limit points to template dimensions
nemo
parents: 7819
diff changeset
   217
    set(pascal_flags "-O-" "-g" "-gl" "-gv" ${pascal_flags})
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   218
    set(haskell_flags "-Wall" "-debug" "-dcore-lint" "-fno-warn-unused-do-bind" ${haskell_flags})
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   219
else()
7709
631852904cee only accept RELASE and DEBUG build type configuration
koda
parents: 7705
diff changeset
   220
    message(STATUS "Building Release flavour")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   221
#    set(pascal_flags "-O3" "-OpPENTIUM4" "-CfSSE3" "-Xs" "-Si" ${pascal_flags})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   222
    set(pascal_flags "-Os" "-Ooregvar" "-Xs" "-Si" ${pascal_flags})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   223
    set(haskell_flags "-w" "-fno-warn-unused-do-bind" ${haskell_flags})
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   224
endif()
2606
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   225
ed687a8d081f updated build files for macosx and optimization system
koda
parents: 2573
diff changeset
   226
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   227
#finish setting paths
266
53f46353d029 one else fix
displacer
parents: 265
diff changeset
   228
if(DEFINED DATA_INSTALL_DIR)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   229
    set(SHAREPATH ${DATA_INSTALL_DIR}/hedgewars/)
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   230
else()
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   231
    set(SHAREPATH share/hedgewars/)
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   232
endif()
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 205
diff changeset
   233
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
7718
97ba379164ec use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents: 7709
diff changeset
   234
set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
8068
b35427506169 win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents: 8055
diff changeset
   235
if(WIN32)
b35427506169 win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents: 8055
diff changeset
   236
    set(CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}/misc/winutils/")
b35427506169 win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents: 8055
diff changeset
   237
    link_directories("${EXECUTABLE_OUTPUT_PATH}" "${CMAKE_SOURCE_DIR}/misc/winutils/bin")
b35427506169 win build changes, fpc 2.6, CMAKE_PREFIX_PATH, glut header
koda
parents: 8055
diff changeset
   238
endif(WIN32)
271
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
   239
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
   240
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   241
#Haskell compiler discovery (for server and engine in c)
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   242
if((NOT NOSERVER) OR NOPASCAL)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   243
    if(GHC)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   244
        set(ghc_executable ${GHC})
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   245
    else()
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   246
        find_program(ghc_executable ghc)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   247
    endif()
5053
a767954cfa03 this should help people hacking the cmake files
koda
parents: 4904
diff changeset
   248
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   249
    if(ghc_executable)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   250
        exec_program(${ghc_executable} ARGS "-V" OUTPUT_VARIABLE ghc_version_long)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   251
        string(REGEX REPLACE ".*([0-9]+\\.[0-9]+\\.[0-9]+)" "\\1" ghc_version "${ghc_version_long}")
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   252
        message(STATUS "Found GHC: ${ghc_executable} (version ${ghc_version})")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   253
    else()
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   254
        message(STATUS "Could NOT find GHC, needed by gameServer and pas2c")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   255
    endif()
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   256
endif()
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   257
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   258
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   259
#check gameServer
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   260
if((ghc_executable) AND (NOT NOSERVER) AND (NOT WEBGL))
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   261
    set(HAVE_NETSERVER true)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   262
    add_subdirectory(gameServer)
7223
b554726ff468 uniform NOPNG and NOSERVER cmake symbols
koda
parents: 7220
diff changeset
   263
else()
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   264
    message(STATUS "Skipping gameServer target")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   265
    set(HAVE_NETSERVER false)
7223
b554726ff468 uniform NOPNG and NOSERVER cmake symbols
koda
parents: 7220
diff changeset
   266
endif()
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1370
diff changeset
   267
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   268
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   269
#lua discovery
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7030
diff changeset
   270
find_package(Lua)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   271
if(LUA_FOUND AND (NOT WEBGL))
7817
6cc558a69b58 countless small optimisation for cmake, output messages are now coherent (mostly) and the options get fully respected (eg. skipping library search if not activated)
koda
parents: 7816
diff changeset
   272
    message(STATUS "Found LUA: ${LUA_DEFAULT}")
7223
b554726ff468 uniform NOPNG and NOSERVER cmake symbols
koda
parents: 7220
diff changeset
   273
else()
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   274
    message(STATUS "Using internal LUA library")
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   275
    add_subdirectory(misc/liblua)
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   276
    #linking with liblua.a requires system readline
7704
b25add2fdfa6 slight tweak to lua linking (that will break everything, i'm sure)
koda
parents: 7397
diff changeset
   277
    set(pascal_flags "-k${EXECUTABLE_OUTPUT_PATH}/lib${LUA_LIBRARY}.a" "-k-lreadline" ${pascal_flags})
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7030
diff changeset
   278
endif()
7223
b554726ff468 uniform NOPNG and NOSERVER cmake symbols
koda
parents: 7220
diff changeset
   279
7705
15f5d3cd35c6 force a DEBUG build when HW_DEV is true, some CMakeLists.txt cleanup/commenting
koda
parents: 7704
diff changeset
   280
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   281
#physfs library
7778
3331b30e4ef1 Fix build
unc0rr
parents: 7721
diff changeset
   282
add_subdirectory(misc/physfs)
3331b30e4ef1 Fix build
unc0rr
parents: 7721
diff changeset
   283
8093
2286a39140da moar cmake cleanup, use message(WARNING ...) where appropriate
koda
parents: 8090
diff changeset
   284
#frontend library
8078
ea7541f77944 Start port to frontlib
unc0rr
parents: 8073
diff changeset
   285
add_subdirectory(project_files/frontlib)
ea7541f77944 Start port to frontlib
unc0rr
parents: 8073
diff changeset
   286
8096
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
   287
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   288
if(NOPASCAL)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   289
    if (NOT ghc_executable)
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   290
        message(FATAL_ERROR "A Haskell compiler is required to build engine in C")
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   291
    endif()
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   292
    #pascal to c converter
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   293
    add_subdirectory(tools/pas2c)
7999
bb503cd46516 add a few cmakefiles for c engine and rtl
koda
parents: 7995
diff changeset
   294
    add_subdirectory(project_files/hwc)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   295
else()
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   296
    #main pascal engine
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   297
    add_subdirectory(hedgewars)
6025
cac1d5601d7c reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents: 6023
diff changeset
   298
endif()
5381
8f95038f3f75 Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts
Xeli
parents: 5223
diff changeset
   299
7993
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   300
if(WEBGL)
5b5083dc6837 split WEBGL and NOPASCAL cmake options
koda
parents: 7973
diff changeset
   301
    #WEBGL deps
8096
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
   302
else(WEBGL)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   303
    #Android related build scripts
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   304
    if(ANDROID)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   305
        add_subdirectory(project_files/Android-build)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   306
    endif()
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   307
8102
20ef5bf0dc7f update var name
koda
parents: 8096
diff changeset
   308
    #TODO: when ANDROID, LIBENGINE should be set
8096
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
   309
    if(NOT ANDROID)
7973
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   310
        add_subdirectory(bin)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   311
        add_subdirectory(QTfrontend)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   312
        add_subdirectory(share)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   313
        add_subdirectory(tools)
afb67e34a6b5 add CMakeFile for pas2c, add WEBGL config option
koda
parents: 7933
diff changeset
   314
    endif()
8096
453917e94e55 updated branch
koda
parents: 8044 8093
diff changeset
   315
endif(WEBGL)
2203
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   316
6bd39d75e0dd -Added support for Release and Debug for CMAKE_BUILD_TYPE
koda
parents: 2200
diff changeset
   317
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   318
5405
5b17e1b3e0d5 better variable grouping...
koda
parents: 5223
diff changeset
   319
# CPack variables
3338
dee9beba85cc patch by raptor (polished by me) to allow tiger/xcode24 compilation
koda
parents: 3306
diff changeset
   320
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hedgewars, a free turn-based strategy")
2827
45817d8386c7 Engine:
smxx
parents: 2822
diff changeset
   321
set(CPACK_PACKAGE_VENDOR "Hedgewars Project")
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   322
set(CPACK_PACKAGE_FILE_NAME "hedgewars-${HEDGEWARS_VERSION}")
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   323
set(CPACK_SOURCE_PACKAGE_FILE_NAME "hedgewars-src-${HEDGEWARS_VERSION}")
1459
cf6fa7c9cf45 Fix generator name (TBZ2 instead of BZ2)
unc0rr
parents: 1458
diff changeset
   324
set(CPACK_SOURCE_GENERATOR "TBZ2")
1173
70b0acd4548c Revert accidental nsis installer generator regression
unc0rr
parents: 1159
diff changeset
   325
set(CPACK_PACKAGE_EXECUTABLES "hedgewars" "hedgewars")
458
5880af7b530a Fix build
unc0rr
parents: 360
diff changeset
   326
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 904
diff changeset
   327
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Hedgewars ${HEDGEWARS_VERSION}")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   328
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   329
if(WIN32 AND NOT UNIX)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   330
    set(CPACK_NSIS_DISPLAY_NAME "Hedgewars")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   331
    set(CPACK_NSIS_HELP_LINK "http://www.hedgewars.org/")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   332
    set(CPACK_NSIS_URL_INFO_ABOUT "http://www.hedgewars.org/")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   333
    set(CPACK_NSIS_CONTACT "unC0Rr@gmail.com")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   334
    set(CPACK_NSIS_MODIFY_PATH OFF)
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   335
    set(CPACK_GENERATOR "ZIP;NSIS")
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   336
    set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "hedgewars")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   337
else(WIN32 AND NOT UNIX)
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   338
    set(CPACK_STRIP_FILES "bin/hedgewars;bin/hwengine")
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   339
endif(WIN32 AND NOT UNIX)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   340
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   341
set(CPACK_SOURCE_IGNORE_FILES
7220
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   342
    "~"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   343
    "\\\\.hg"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   344
    "\\\\.svn"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   345
    "\\\\.exe$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   346
    "\\\\.a$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   347
    "\\\\.dll$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   348
    "\\\\.xcf$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   349
    "\\\\.cxx$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   350
    "\\\\.db$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   351
    "\\\\.dof$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   352
    "\\\\.layout$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   353
    "\\\\.zip$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   354
    "\\\\.gz$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   355
    "\\\\.bz2$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   356
    "\\\\.tmp$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   357
    "\\\\.core$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   358
    "\\\\.sh$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   359
    "\\\\.sifz$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   360
    "\\\\.svg$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   361
    "\\\\.svgz$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   362
    "\\\\.ppu$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   363
    "\\\\.psd$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   364
    "\\\\.o$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   365
    "Makefile"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   366
    "Doxyfile"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   367
    "CMakeFiles"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   368
    "debug"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   369
    "release$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   370
    "Debug$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   371
    "Release$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   372
    "proto\\\\.inc$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   373
    "hwconsts\\\\.cpp$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   374
    "playlist\\\\.inc$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   375
    "CPack"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   376
    "cmake_install\\\\.cmake$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   377
    "config\\\\.inc$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   378
    "hwengine\\\\.desktop$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   379
    "CMakeCache\\\\.txt$"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   380
#    "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libopenalbridge"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   381
#    "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libfreetype"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   382
    "^${CMAKE_CURRENT_SOURCE_DIR}/misc/liblua"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   383
#    "^${CMAKE_CURRENT_SOURCE_DIR}/misc/libtremor"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   384
    "^${CMAKE_CURRENT_SOURCE_DIR}/project_files/HedgewarsMobile/"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   385
    "^${CMAKE_CURRENT_SOURCE_DIR}/bin/[a-z]"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   386
    "^${CMAKE_CURRENT_SOURCE_DIR}/tools/templates"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   387
    "^${CMAKE_CURRENT_SOURCE_DIR}/doc"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   388
    "^${CMAKE_CURRENT_SOURCE_DIR}/templates"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   389
    "^${CMAKE_CURRENT_SOURCE_DIR}/Graphics"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   390
    "^${CMAKE_CURRENT_SOURCE_DIR}/realtest"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   391
    "^${CMAKE_CURRENT_SOURCE_DIR}/tmp"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   392
    "^${CMAKE_CURRENT_SOURCE_DIR}/utils"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   393
    "^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Maps/test"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   394
    "^${CMAKE_CURRENT_SOURCE_DIR}/share/hedgewars/Data/Themes/ethereal"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   395
    "^${CMAKE_CURRENT_SOURCE_DIR}/install_manifest.txt"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   396
    "^${CMAKE_CURRENT_SOURCE_DIR}/CMakeCache.txt"
dfe678f129e4 sed 's/\t/ /g' CMakeLists.txt
koda
parents: 7114
diff changeset
   397
    "^${CMAKE_CURRENT_SOURCE_DIR}/hedgewars\\\\."
584
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   398
)
f381705f1aeb Some stuff to get good results from make 'package_source'
unc0rr
parents: 546
diff changeset
   399
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 123
diff changeset
   400
include(CPack)
5407
486231e82e8d typo and spaces
koda
parents: 5405
diff changeset
   401