hedgewars/CMakeLists.txt
author koda
Tue, 19 Mar 2013 14:14:40 +0100
branchcmake_pascal
changeset 8798 03d113d51062
parent 8790 783669d76b4f
child 8802 ed984e06b435
permissions -rw-r--r--
wow windows works too with minor changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2420
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     1
find_package(SDL)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     2
find_package(SDL_image)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     3
find_package(SDL_net)
b7390a3040f8 ultramegafix
koda
parents: 2413
diff changeset
     4
find_package(SDL_ttf)
2515
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2494
diff changeset
     5
find_package(SDL_mixer)
2401
2a694ea2a437 fixes & co.
koda
parents: 2326
diff changeset
     6
8661
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
     7
include (CheckLibraryExists)
8669
3f9853888d4f user correct variable and slimmer test, version typos, .dll.a updated
koda
parents: 8666
diff changeset
     8
#Mix_Init/Mix_Quit from SDL_mixer 1.2.10
8664
6204ac0293b4 support old cmake style variables
koda
parents: 8662
diff changeset
     9
check_library_exists(${SDLMIXER_LIBRARY} Mix_Init "" HAVE_MIXINIT)
8661
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
    10
if(HAVE_MIXINIT)
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
    11
    add_definitions(-dSDL_MIXER_NEWER)
8661
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
    12
endif()
8669
3f9853888d4f user correct variable and slimmer test, version typos, .dll.a updated
koda
parents: 8666
diff changeset
    13
#IMG_Init/IMG_Quit from SDL_image 1.2.8
8664
6204ac0293b4 support old cmake style variables
koda
parents: 8662
diff changeset
    14
check_library_exists(${SDLIMAGE_LIBRARY} IMG_Init "" HAVE_IMGINIT)
8661
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
    15
if(HAVE_IMGINIT)
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
    16
    add_definitions(-dSDL_IMAGE_NEWER)
8661
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
    17
endif()
ac8dba27a3f1 replace sdl mixer/image version checking with something more robust
koda
parents: 8611
diff changeset
    18
2672
0f1403bf267a check for sdl_image and sdl_mixer versions
koda
parents: 2671
diff changeset
    19
8752
48cf2ccb83c6 with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents: 8702
diff changeset
    20
enable_language(Pascal)
8702
a28966180a29 have fpc work in the right directory instead of passing the full path of the main module (avoids having full paths in debug build backtraces for the first module only)
koda
parents: 8697
diff changeset
    21
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc)
2406
2e757b32991e cmake optimizations and simplification
koda
parents: 2404
diff changeset
    22
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
    23
#SOURCE AND PROGRAMS SECTION
8798
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    24
if(${BUILD_ENGINE_LIBRARY})
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    25
    set(engine_output_name "${CMAKE_SHARED_LIBRARY_PREFIX}hwengine${CMAKE_SHARED_LIBRARY_SUFFIX}")
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    26
    set(hwengine_project hwLibrary.pas)
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    27
else()
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    28
    set(engine_output_name "hwengine${CMAKE_EXECUTABLE_SUFFIX}")
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
    29
endif()
8166
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    30
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    31
if (APPLE)
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    32
    set(required_fpc_version 2.6)
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    33
else()
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    34
    set(required_fpc_version 2.2)
5bc0fc0bab4d Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8164
diff changeset
    35
endif()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
    36
2786
85f6425a4d74 Engine:
smxx
parents: 2673
diff changeset
    37
set(engine_sources
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    38
    SDLh.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    39
    uSinTable.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    40
    uFloat.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    41
    uConsts.pas
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7718
diff changeset
    42
    LuaPas.pas
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7718
diff changeset
    43
    PNGh.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    44
    uTypes.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    45
    uUtils.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    46
    uVariables.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    47
    uMisc.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    48
    uConsole.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    49
    uDebug.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    50
    uCommands.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    51
    uInputHandler.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    52
    uTextures.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    53
    uRenderUtils.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    54
    uRender.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    55
    uCaptions.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    56
    uLandTexture.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    57
    uIO.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    58
    uChat.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    59
    uPhysFSLayer.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    60
    uStore.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    61
    uSound.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    62
    uRandom.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    63
    uLocale.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    64
    uStats.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    65
    uCursor.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    66
    uVideoRec.pas
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7718
diff changeset
    67
    uAILandMarks.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    68
    adler32.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    69
    uLandTemplates.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    70
    uLandGraphics.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    71
    uLandPainted.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    72
    uLandOutline.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    73
    uLandGenMaze.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    74
    uLandObjects.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    75
    uLand.pas
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
    76
    uAmmos.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    77
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    78
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    79
    uGearsList.pas
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
    80
    uCollisions.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    81
    uAIMisc.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    82
    uAIActions.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    83
    uAIAmmoTests.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    84
    uAI.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    85
    uTeams.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    86
    uGears.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    87
    uGame.pas
4413
46caab3a8f84 uCommandHandlers
unc0rr
parents: 4403
diff changeset
    88
    uCommandHandlers.pas
7370
d50b874e7ee8 Introduce uGearsHandlers.pas, for now only part of cake handlers is moved there
unc0rr
parents: 7233
diff changeset
    89
    uGearsHandlers.pas
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7370
diff changeset
    90
    uGearsHandlersRope.pas
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7718
diff changeset
    91
    uGearsHedgehog.pas
4386
855049a88c59 Forgot this
unc0rr
parents: 4380
diff changeset
    92
    uGearsRender.pas
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7370
diff changeset
    93
    uGearsUtils.pas
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
    94
    uScript.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    95
    uWorld.pas
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
    96
    uVisualGears.pas
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    97
    hwengine.pas
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
    98
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
    99
    GSHandlers.inc
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   100
    VGSHandlers.inc
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   101
    ArgParsers.inc
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   102
    options.inc
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   103
    ${CMAKE_CURRENT_BINARY_DIR}/config.inc
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   104
    )
220
d79eaeaf969d Fix hwengine target behaviour
unc0rr
parents: 196
diff changeset
   105
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   106
if(${BUILD_ENGINE_LIBRARY})
8611
90f445317e8a support WARNING message status on cmake 2.6 (bug 524)
koda
parents: 8528
diff changeset
   107
    message(${WARNING} "Engine will be built as library (experimental)")
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   108
    add_definitions(-dHWLIBRARY)
4928
6ebbca960503 fix engine library compilation on linux/amd64
sheepluva
parents: 4457
diff changeset
   109
7112
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   110
    # due to compiler/linker issues on Max OS X 10.6 -k-no_order_inits is needed to avoid linking fail
8311
bc18481dca8b can use engine as library on windows too
koda
parents: 8283
diff changeset
   111
    if(APPLE AND current_macosx_version VERSION_GREATER "10.5")
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   112
        add_flag_append(CMAKE_Pascal_FLAGS "-k-no_order_inits")
5188
d0461bd6d45b some updates to the crossbuild system for mac
koda
parents: 5179
diff changeset
   113
    endif()
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   114
    set(destination_dir ${target_library_install_dir})
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   115
else(${BUILD_ENGINE_LIBRARY})
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   116
    set(destination_dir ${target_binary_install_dir})
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   117
endif(${BUILD_ENGINE_LIBRARY})
3495
a6b4f351d400 now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents: 3468
diff changeset
   118
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents: 7817
diff changeset
   119
8686
d303da4568b7 introduce find_package_or_fail/disable to group together similar cmake code
koda
parents: 8669
diff changeset
   120
include(${CMAKE_MODULE_PATH}/utils.cmake)
d303da4568b7 introduce find_package_or_fail/disable to group together similar cmake code
koda
parents: 8669
diff changeset
   121
d303da4568b7 introduce find_package_or_fail/disable to group together similar cmake code
koda
parents: 8669
diff changeset
   122
find_package_or_fail(FreePascal)
d303da4568b7 introduce find_package_or_fail/disable to group together similar cmake code
koda
parents: 8669
diff changeset
   123
8665
3ff8694d9e22 rewritten findfreepascal, moved checkstack code elsewhere
koda
parents: 8664
diff changeset
   124
#when cmake-2.6 support is dropped, this ought to be inside FindFreePascal.cmake
3ff8694d9e22 rewritten findfreepascal, moved checkstack code elsewhere
koda
parents: 8664
diff changeset
   125
if (FREEPASCAL_VERSION VERSION_LESS required_fpc_version)
3ff8694d9e22 rewritten findfreepascal, moved checkstack code elsewhere
koda
parents: 8664
diff changeset
   126
    message(FATAL_ERROR "Freepascal ${FREEPASCAL_VERSION} is too old, minimum version required is ${required_fpc_version}")
8164
b12634f2e1b2 Move noexecstack flags to Freepascal module and refactor.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents: 8162
diff changeset
   127
endif()
476
a4e975f70b60 check for noexecstack linker compatibility (MacOS linker)
displacer
parents: 433
diff changeset
   128
a4e975f70b60 check for noexecstack linker compatibility (MacOS linker)
displacer
parents: 433
diff changeset
   129
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: 8087
diff changeset
   130
#DEPENDECIES AND EXECUTABLES SECTION
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   131
if(APPLE)
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   132
    string(REGEX MATCH "[pP][pP][cC]+" powerpc_build "${CMAKE_OSX_ARCHITECTURES}")
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   133
    string(REGEX MATCH "[iI]386+" i386_build "${CMAKE_OSX_ARCHITECTURES}")
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   134
    string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}")
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   135
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   136
    if(powerpc_build)
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   137
        set(powerpc_build "powerpc")
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4158
diff changeset
   138
    endif()
2652
67d0344aea9f still updates for mac compilation
koda
parents: 2644
diff changeset
   139
7708
95de696e4711 another little tweak
koda
parents: 7706
diff changeset
   140
    #on OSX we need to provide the SDL_main() function when building as executable
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 8314
diff changeset
   141
    if(NOT ${BUILD_ENGINE_LIBRARY})
7708
95de696e4711 another little tweak
koda
parents: 7706
diff changeset
   142
        #let's look for the installed sdlmain file; if it is not found, let's build our own
7109
af3a43a46f21 there a libSDLMain.a in the bundled SDL framework
koda
parents: 7031
diff changeset
   143
        find_package(SDL REQUIRED)
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   144
        include_directories(${SDL_INCLUDE_DIR})
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   145
        add_library (SDLmain STATIC SDLMain.m)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   146
        add_flag_append(CMAKE_Pascal_FLAGS -Fl${LIBRARY_OUTPUT_PATH})
7112
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   147
    endif()
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   148
endif(APPLE)
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   149
7655
b993257902d3 if this doesn't work I shall cry like a lady
sheepluva
parents: 7654
diff changeset
   150
8666
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   151
if(${FFMPEG_FOUND})
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   152
    # TODO: this check is only for SDL < 2
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   153
    # fpc will take care of linking but we need to have this library installed
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   154
    find_package(GLUT REQUIRED)
7954
a5f0a6d46c52 advice from hasufell
koda
parents: 7942
diff changeset
   155
8666
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   156
    #TODO: convert avwrapper to .pas unit so we can skip this step
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   157
    include_directories(${FFMPEG_INCLUDE_DIR})
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   158
    if(WIN32)
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   159
        # there are some problems with linking our avwrapper as static lib, so link it as shared
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   160
        add_library(avwrapper SHARED avwrapper.c)
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   161
        target_link_libraries(avwrapper ${FFMPEG_LIBRARIES})
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   162
        install(PROGRAMS "${LIBRARY_OUTPUT_PATH}/${CMAKE_SHARED_LIBRARY_PREFIX}avwrapper${CMAKE_SHARED_LIBRARY_SUFFIX}" DESTINATION ${target_library_install_dir})
7540
cc6c656f70b5 cmake scripts
Stepan777 <stepik-777@mail.ru>
parents: 7538
diff changeset
   163
    else()
8666
1652c1d9adc8 rework ffmpeg/libav/videorec linking and their cmake discovery
koda
parents: 8665
diff changeset
   164
        add_library(avwrapper STATIC avwrapper.c)
7538
2d6e69b392cb better cmake script
Stepan777 <stepik-777@mail.ru>
parents: 7534
diff changeset
   165
    endif()
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   166
    add_definitions(-dUSE_VIDEO_RECORDING)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   167
    add_flag_append(CMAKE_Pascal_FLAGS -Fl${LIBRARY_OUTPUT_PATH})
7538
2d6e69b392cb better cmake script
Stepan777 <stepik-777@mail.ru>
parents: 7534
diff changeset
   168
endif()
7112
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   169
8770
53481d654691 partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents: 8761
diff changeset
   170
find_package_or_disable_msg(PNG NOPNG "Screenshots will be saved in BMP")
53481d654691 partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents: 8761
diff changeset
   171
if(PNG_FOUND)
53481d654691 partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents: 8761
diff changeset
   172
    get_filename_component(PNG_LIB_DIR ${PNG_LIBRARY} PATH)
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   173
    add_definitions(-dPNG_SCREENSHOTS)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   174
    add_flag_append(CMAKE_Pascal_FLAGS -Fl${PNG_LIB_DIR})
8770
53481d654691 partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents: 8761
diff changeset
   175
endif()
8067
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8064
diff changeset
   176
8787
f9dc079f2aa6 move one flag
koda
parents: 8775
diff changeset
   177
if(NOT LUA_FOUND)
8798
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
   178
    add_flag_append(CMAKE_Pascal_FLAGS -k${EXECUTABLE_OUTPUT_PATH}/lib${LUA_LIBRARY}.a)
8787
f9dc079f2aa6 move one flag
koda
parents: 8775
diff changeset
   179
    #linking with liblua.a requires system readline
8798
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
   180
    if(UNIX)
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
   181
        add_flag_append(CMAKE_Pascal_FLAGS -k-lreadline)
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
   182
    endif(UNIX)
8787
f9dc079f2aa6 move one flag
koda
parents: 8775
diff changeset
   183
endif()
f9dc079f2aa6 move one flag
koda
parents: 8775
diff changeset
   184
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   185
if(NOT PHYSFS_FOUND)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   186
    #-XLA is a beta fpc flag that renames libraries before passing them to the linker
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   187
    #we also have to pass PHYSFS_INTERNAL to satisfy windows runtime requirements
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   188
    #(should be harmless on other platforms)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   189
    add_flag_append(CMAKE_Pascal_FLAGS "-XLAphysfs=${physfs_output_name}")
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   190
    add_definitions(-dPHYSFS_INTERNAL)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   191
endif()
8752
48cf2ccb83c6 with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents: 8702
diff changeset
   192
8754
0c08d07e791a this should make cmake-pascal stuff work on linux too
koda
parents: 8752
diff changeset
   193
if(APPLE)
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   194
    add_flag_append(CMAKE_Pascal_FLAGS -Px86_64)
8754
0c08d07e791a this should make cmake-pascal stuff work on linux too
koda
parents: 8752
diff changeset
   195
else()
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   196
    add_flag_append(CMAKE_Pascal_FLAGS -Pi386)
8754
0c08d07e791a this should make cmake-pascal stuff work on linux too
koda
parents: 8752
diff changeset
   197
endif()
7112
38c5d56c4d6e rename a few internal cmake variables (for consistency and readability)
koda
parents: 7109
diff changeset
   198
8775
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   199
add_definitions(-dDEBUGFILE)
3cad01db0bae apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents: 8770
diff changeset
   200
add_executable(hwengine ${engine_sources})
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7029
diff changeset
   201
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7029
diff changeset
   202
#when system Lua is not found we need to compile it before engine
7233
225179f64fd8 LUA_FOUND should surely be set only if the system lua was found.
nemo
parents: 7223
diff changeset
   203
if(NOT LUA_FOUND)
8790
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   204
    target_link_libraries(hwengine lua)
7031
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7029
diff changeset
   205
endif()
d5ea24399a48 when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents: 7029
diff changeset
   206
8528
ffd71e99a4f0 and now compile and link properly
koda
parents: 8518
diff changeset
   207
# same for physfs
ffd71e99a4f0 and now compile and link properly
koda
parents: 8518
diff changeset
   208
if(NOT PHYSFS_FOUND)
8790
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   209
    target_link_libraries(hwengine physfs)
8528
ffd71e99a4f0 and now compile and link properly
koda
parents: 8518
diff changeset
   210
endif()
ffd71e99a4f0 and now compile and link properly
koda
parents: 8518
diff changeset
   211
8790
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   212
target_link_libraries(hwengine physlayer)
7967
2f4fa2a06e4f Build physfs lib before engine
unc0rr
parents: 7959
diff changeset
   213
7942
17b3937de37b avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents: 7940
diff changeset
   214
#when ffmpeg/libav is found we need to compile it before engine
7954
a5f0a6d46c52 advice from hasufell
koda
parents: 7942
diff changeset
   215
#TODO: convert avwrapper to .pas unit so we can skip this step
7942
17b3937de37b avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents: 7940
diff changeset
   216
if(${FFMPEG_FOUND})
8790
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   217
    target_link_libraries(hwengine avwrapper)
7942
17b3937de37b avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents: 7940
diff changeset
   218
endif()
17b3937de37b avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents: 7940
diff changeset
   219
8790
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   220
if(APPLE)
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   221
    target_link_libraries(hwengine SDLmain)
783669d76b4f even though pascal linking is scripted, we need target_link_libraries anyways, so that modifying that library, will trigger linking again
koda
parents: 8787
diff changeset
   222
endif()
7706
19ade14ecc29 forgot a few checks from rev f40c65ae3eab
koda
parents: 7694
diff changeset
   223
#this command is a workaround to some inlining issues present in older FreePascal versions and fixed in 2.6
8761
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
   224
#if((FREEPASCAL_VERSION VERSION_LESS "2.6") AND (NOT ${FFMPEG_FOUND}))
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
   225
#    add_dependencies(hwengine ENGINECLEAN)
801cf78707f2 partial reodering of units so that dependency tracking is done with cmake
koda
parents: 8756
diff changeset
   226
#endif()
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 173
diff changeset
   227
8798
03d113d51062 wow windows works too with minor changes
koda
parents: 8790
diff changeset
   228
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" DESTINATION ${destination_dir})