author | koda |
Wed, 06 Mar 2013 03:11:15 +0100 | |
changeset 8661 | ac8dba27a3f1 |
parent 8611 | 90f445317e8a |
child 8662 | bfcc09f2accc |
permissions | -rw-r--r-- |
2420 | 1 |
find_package(SDL) |
2 |
find_package(SDL_image) |
|
3 |
find_package(SDL_net) |
|
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 | 6 |
|
8661
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
7 |
|
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
8 |
include (CheckLibraryExists) |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
9 |
#Mix_Init/Mix_Quit from SDL_mixer 1.2.9 |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
10 |
check_library_exists(${SDL_MIXER_LIBRARY} Mix_Init "" HAVE_MIXINIT) |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
11 |
if(HAVE_MIXINIT) |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
12 |
list(APPEND pascal_flags "-dSDL_MIXER_NEWER") |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
13 |
endif() |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
14 |
#IMG_Init/IMG_Quit from SDL_image 1.2.7 |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
15 |
check_library_exists(${SDL_IMAGE_LIBRARY} IMG_Init "" HAVE_IMGINIT) |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
16 |
if(HAVE_IMGINIT) |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
17 |
list(APPEND pascal_flags "-dSDL_IMAGE_NEWER") |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
18 |
endif() |
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
19 |
|
2672 | 20 |
|
5019 | 21 |
configure_file(${hedgewars_SOURCE_DIR}/hedgewars/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc) |
2406 | 22 |
|
3697 | 23 |
#SOURCE AND PROGRAMS SECTION |
8312
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
24 |
if(${BUILD_ENGINE_LIBRARY}) |
8314
7faceaca67d4
can change library name and compile it on windows again
koda
parents:
8312
diff
changeset
|
25 |
set(engine_output_name "${CMAKE_SHARED_LIBRARY_PREFIX}hwengine${CMAKE_SHARED_LIBRARY_SUFFIX}") |
8312
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
26 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwLibrary.pas) |
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
27 |
else() |
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
28 |
set(engine_output_name "hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
29 |
set(hwengine_project ${hedgewars_SOURCE_DIR}/hedgewars/hwengine.pas) |
9e8781faabab
can compile engine as library on linux but not run the executable (automatically), most likely breaking other platforms (wrt engine-as-library)
koda
parents:
8311
diff
changeset
|
30 |
endif() |
8166
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
31 |
|
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
32 |
if (APPLE) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
33 |
set(required_fpc_version 2.6) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
34 |
else() |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
35 |
set(required_fpc_version 2.2) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
36 |
endif() |
184 | 37 |
|
2786 | 38 |
set(engine_sources |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
39 |
${hwengine_project} |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
40 |
LuaPas.pas |
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
41 |
PNGh.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
42 |
SDLh.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
43 |
uAI.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
44 |
uAIActions.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
45 |
uAILandMarks.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
46 |
uAIAmmoTests.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
47 |
uAIMisc.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
48 |
uAmmos.pas |
4393 | 49 |
uCaptions.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
50 |
uChat.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
51 |
uCollisions.pas |
4373 | 52 |
uCommands.pas |
4413 | 53 |
uCommandHandlers.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
54 |
uConsole.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
55 |
uConsts.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
56 |
uCursor.pas |
4403 | 57 |
uDebug.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
58 |
uFloat.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
59 |
uGame.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
60 |
uGears.pas |
7370
d50b874e7ee8
Introduce uGearsHandlers.pas, for now only part of cake handlers is moved there
unc0rr
parents:
7233
diff
changeset
|
61 |
uGearsHandlers.pas |
7592 | 62 |
uGearsHandlersRope.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
63 |
uGearsHedgehog.pas |
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
64 |
uGearsList.pas |
4386 | 65 |
uGearsRender.pas |
7592 | 66 |
uGearsUtils.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
67 |
uIO.pas |
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6920
diff
changeset
|
68 |
uInputHandler.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
69 |
uLand.pas |
6491 | 70 |
uLandGenMaze.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
71 |
uLandGraphics.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
72 |
uLandObjects.pas |
6491 | 73 |
uLandOutline.pas |
4457 | 74 |
uLandPainted.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
75 |
uLandTemplates.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
76 |
uLandTexture.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
77 |
uLocale.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
78 |
uMisc.pas |
7959 | 79 |
uPhysFSLayer.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
80 |
uRandom.pas |
4378 | 81 |
uRender.pas |
4380 | 82 |
uRenderUtils.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
83 |
uScript.pas |
4415 | 84 |
uSinTable.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
85 |
uSound.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
86 |
uStats.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
87 |
uStore.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
88 |
uTeams.pas |
4375 | 89 |
uTextures.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
90 |
uTouch.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
91 |
uTypes.pas |
4374 | 92 |
uUtils.pas |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5169
diff
changeset
|
93 |
uVariables.pas |
7180 | 94 |
uVideoRec.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
95 |
uVisualGears.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
96 |
uWorld.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
97 |
GSHandlers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
98 |
VGSHandlers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
99 |
ArgParsers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
100 |
options.inc |
4378 | 101 |
adler32.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
102 |
${CMAKE_CURRENT_BINARY_DIR}/config.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
103 |
) |
220 | 104 |
|
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
|
105 |
if(${BUILD_ENGINE_LIBRARY}) |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8528
diff
changeset
|
106 |
message(${WARNING} "Engine will be built as library (experimental)") |
8347 | 107 |
list(APPEND pascal_flags "-dHWLIBRARY") |
4928 | 108 |
|
109 |
# create position independent code, only required for x68_64 builds, similar to -fPIC |
|
110 |
if(CMAKE_SIZEOF_VOID_P MATCHES "8") |
|
8347 | 111 |
list(APPEND pascal_flags "-Cg") |
4928 | 112 |
endif(CMAKE_SIZEOF_VOID_P MATCHES "8") |
113 |
||
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
114 |
# due to compiler/linker issues on Max OS X 10.6 -k-no_order_inits is needed to avoid linking fail |
8311 | 115 |
if(APPLE AND current_macosx_version VERSION_GREATER "10.5") |
8347 | 116 |
list(APPEND pascal_flags "-k-no_order_inits") |
5188 | 117 |
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
|
118 |
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
|
119 |
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
|
120 |
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
|
121 |
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
|
122 |
|
7959 | 123 |
|
8162
b97a17bf89ec
Move code for Freepascal to separate CMake module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8146
diff
changeset
|
124 |
# Check Freepascal version |
8164
b12634f2e1b2
Move noexecstack flags to Freepascal module and refactor.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8162
diff
changeset
|
125 |
find_package(Freepascal) |
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
|
126 |
|
8166
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
127 |
if (FPC_VERSION VERSION_LESS required_fpc_version) |
8195
37d47f09f981
caught a few more possible glitches in engine cmakefile
koda
parents:
8188
diff
changeset
|
128 |
message(FATAL_ERROR "Freepascal 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
|
129 |
endif() |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
130 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
131 |
|
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
|
132 |
#DEPENDECIES AND EXECUTABLES SECTION |
2652 | 133 |
if(APPLE) |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
134 |
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
|
135 |
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
|
136 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
2652 | 137 |
|
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
138 |
if(powerpc_build) |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
139 |
set(powerpc_build "powerpc") |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
140 |
endif() |
2652 | 141 |
|
7708 | 142 |
#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
|
143 |
if(NOT ${BUILD_ENGINE_LIBRARY}) |
7708 | 144 |
#let's look for the installed sdlmain file; if it is not found, let's build our own |
7109 | 145 |
find_package(SDL REQUIRED) |
146 |
#remove the ";-framework Cocoa" from the SDL_LIBRARY variable |
|
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
|
147 |
string(REGEX REPLACE "(.*);-.*" "\\1" sdl_library_only "${SDL_LIBRARY}") |
7109 | 148 |
#find libsdmain.a |
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
|
149 |
find_file(SDLMAIN_LIB libSDLMain.a PATHS ${sdl_library_only}/Resources/) |
2669 | 150 |
|
7109 | 151 |
if(SDLMAIN_LIB MATCHES "SDLMAIN_LIB-NOTFOUND") |
152 |
include_directories(${SDL_INCLUDE_DIR}) |
|
153 |
add_library (SDLmain STATIC SDLMain.m) |
|
154 |
#add a dependency to the hwengine target |
|
8347 | 155 |
list(APPEND engine_sources SDLmain) |
7708 | 156 |
set(SDLMAIN_LIB "${LIBRARY_OUTPUT_PATH}/libSDLmain.a") |
7109 | 157 |
endif() |
2669 | 158 |
|
8347 | 159 |
list(APPEND pascal_flags "-k${SDLMAIN_LIB}") |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
160 |
endif() |
8518
24d2bdc6deff
fix compiling on osx when you have multiple linkers installed
koda
parents:
8379
diff
changeset
|
161 |
|
24d2bdc6deff
fix compiling on osx when you have multiple linkers installed
koda
parents:
8379
diff
changeset
|
162 |
#when you have multiple ld installation make sure you get the one bundled with the compiler |
24d2bdc6deff
fix compiling on osx when you have multiple linkers installed
koda
parents:
8379
diff
changeset
|
163 |
get_filename_component(compiler_dir ${CMAKE_C_COMPILER} PATH) |
24d2bdc6deff
fix compiling on osx when you have multiple linkers installed
koda
parents:
8379
diff
changeset
|
164 |
list(APPEND pascal_flags "-FD${compiler_dir}") |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
165 |
endif(APPLE) |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
166 |
|
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7112
diff
changeset
|
167 |
if(NOT NOPNG) |
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7112
diff
changeset
|
168 |
find_package(PNG) |
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7112
diff
changeset
|
169 |
if(${PNG_FOUND}) |
8347 | 170 |
list(APPEND pascal_flags "-dPNG_SCREENSHOTS") |
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
|
171 |
if(APPLE) # fpc png unit doesn't pull the library (see bug 21833) |
8347 | 172 |
list(APPEND pascal_flags "-k${PNG_LIBRARY}") |
7114
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7112
diff
changeset
|
173 |
endif() |
e0110a1229b7
add NOPNG to cmake to explicitly disable PNG dependency
koda
parents:
7112
diff
changeset
|
174 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8528
diff
changeset
|
175 |
message(${WARNING} "Screenshots will be in BMP format because libpng was not found") |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
176 |
endif() |
7223 | 177 |
else() |
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7708
diff
changeset
|
178 |
message(STATUS "Screenshots will be in BMP format per user request") |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
179 |
endif() |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
180 |
|
7655 | 181 |
|
7706 | 182 |
#this command is a workaround to some inlining issues present in older FreePascal versions and fixed in 2.6 |
8195
37d47f09f981
caught a few more possible glitches in engine cmakefile
koda
parents:
8188
diff
changeset
|
183 |
if(FPC_VERSION VERSION_LESS "2.6") |
7940 | 184 |
#under some configurations CMAKE_BUILD_TOOL fails to pass on the jobserver, breaking parallel compilation |
185 |
if(UNIX) |
|
186 |
set(SAFE_BUILD_TOOL $(MAKE)) |
|
187 |
else() |
|
188 |
set(SAFE_BUILD_TOOL ${CMAKE_BUILD_TOOL}) |
|
189 |
endif() |
|
190 |
add_custom_target(ENGINECLEAN COMMAND ${SAFE_BUILD_TOOL} "clean" "${PROJECT_BINARY_DIR}" "${hedgewars_SOURCE_DIR}/hedgewars") |
|
7655 | 191 |
endif() |
192 |
||
193 |
||
7718
97ba379164ec
use cmake OPTION for arguments and further cleanup on CMakeFiles
koda
parents:
7708
diff
changeset
|
194 |
if(NOT NOVIDEOREC) |
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
|
195 |
set(FFMPEG_FIND_QUIETLY true) |
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
|
196 |
find_package(FFMPEG) |
7538 | 197 |
if(${FFMPEG_FOUND}) |
7954 | 198 |
# TODO: this check is only for SDL < 2 |
199 |
# fpc will take care of linking but we need to have this library installed |
|
200 |
find_package(GLUT REQUIRED) |
|
201 |
||
202 |
#TODO: convert avwrapper to .pas unit so we can skip this step |
|
7538 | 203 |
include_directories(${FFMPEG_INCLUDE_DIR}) |
8347 | 204 |
list(APPEND pascal_flags "-dUSE_VIDEO_RECORDING") |
7538 | 205 |
IF (WIN32) |
206 |
# there are some problems with linking our avwrapper as static lib, so link it as shared |
|
207 |
add_library(avwrapper SHARED avwrapper.c) |
|
208 |
target_link_libraries(avwrapper ${FFMPEG_LIBRARIES}) |
|
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
|
209 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${CMAKE_SHARED_LIBRARY_PREFIX}avwrapper${CMAKE_SHARED_LIBRARY_SUFFIX}" DESTINATION ${target_library_install_dir}) |
7538 | 210 |
ELSE() |
211 |
add_library(avwrapper STATIC avwrapper.c) |
|
8347 | 212 |
list(APPEND pascal_flags "-k${FFMPEG_LIBAVCODEC}" "-k${FFMPEG_LIBAVFORMAT}" "-k${FFMPEG_LIBAVUTIL}") |
7538 | 213 |
ENDIF() |
7540 | 214 |
else() |
8611
90f445317e8a
support WARNING message status on cmake 2.6 (bug 524)
koda
parents:
8528
diff
changeset
|
215 |
message(${WARNING} "Could NOT find FFMPEG/LibAV, video recording will be disabled") |
7538 | 216 |
endif() |
217 |
else() |
|
218 |
message(STATUS "Video recording disabled by user") |
|
219 |
endif() |
|
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
220 |
|
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
|
221 |
|
8188
4c166505e5c8
fix compiling engine (bug introduced in r33868aea694c)
koda
parents:
8166
diff
changeset
|
222 |
set(fpc_flags ${NOEXECSTACK_FLAGS} ${pascal_flags} ${hwengine_project}) |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
223 |
|
8146 | 224 |
if(NOT APPLE) |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
225 |
#here is the command for standard executables or for shared library |
8311 | 226 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" |
8188
4c166505e5c8
fix compiling engine (bug introduced in r33868aea694c)
koda
parents:
8166
diff
changeset
|
227 |
COMMAND "${FPC_EXECUTABLE}" |
8314
7faceaca67d4
can change library name and compile it on windows again
koda
parents:
8312
diff
changeset
|
228 |
ARGS ${fpc_flags} -o${engine_output_name} |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
229 |
MAIN_DEPENDENCY ${hwengine_project} |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
230 |
DEPENDS ${engine_sources} |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
231 |
) |
8146 | 232 |
else() |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
233 |
#these are the dependencies for building a universal binary on Mac OS X |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
234 |
foreach (build_arch ${powerpc_build} ${i386_build} ${x86_64_build}) |
8347 | 235 |
list(APPEND lipo_args_list "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
236 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}" |
8188
4c166505e5c8
fix compiling engine (bug introduced in r33868aea694c)
koda
parents:
8166
diff
changeset
|
237 |
COMMAND "${FPC_EXECUTABLE}" |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
238 |
ARGS ${fpc_flags} -ohwengine.${build_arch} -P${build_arch} |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
239 |
MAIN_DEPENDENCY ${hwengine_project} |
7109 | 240 |
DEPENDS ${engine_sources} |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
241 |
) |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
242 |
add_custom_target(hwengine.${build_arch} ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch}") |
8322 | 243 |
add_custom_command(TARGET hwengine.${build_arch} POST_BUILD |
244 |
COMMAND "install_name_tool" |
|
245 |
ARGS -id @executable_path/../Frameworks/${engine_output_name} |
|
246 |
${EXECUTABLE_OUTPUT_PATH}/hwengine.${build_arch} |
|
247 |
) |
|
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
248 |
endforeach() |
2003 | 249 |
|
4930 | 250 |
add_custom_command(OUTPUT "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
251 |
COMMAND "lipo" |
4930 | 252 |
ARGS ${lipo_args_list} -create -output ${EXECUTABLE_OUTPUT_PATH}/${engine_output_name} |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
253 |
DEPENDS ${lipo_args_list} |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
254 |
) |
8146 | 255 |
endif() |
2003 | 256 |
|
2641 | 257 |
|
8379 | 258 |
add_custom_target(hwengine ALL DEPENDS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}") |
7031
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7029
diff
changeset
|
259 |
|
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7029
diff
changeset
|
260 |
#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
|
261 |
if(NOT LUA_FOUND) |
8379 | 262 |
add_dependencies(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
|
263 |
endif() |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7029
diff
changeset
|
264 |
|
8528 | 265 |
# same for physfs |
266 |
if(NOT PHYSFS_FOUND) |
|
267 |
add_dependencies(hwengine physfs) |
|
268 |
endif() |
|
269 |
||
270 |
add_dependencies(hwengine physlayer) |
|
7967 | 271 |
|
7942
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
272 |
#when ffmpeg/libav is found we need to compile it before engine |
7954 | 273 |
#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
|
274 |
if(${FFMPEG_FOUND}) |
8379 | 275 |
add_dependencies(hwengine avwrapper) |
7942
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
276 |
endif() |
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
277 |
|
7706 | 278 |
#this command is a workaround to some inlining issues present in older FreePascal versions and fixed in 2.6 |
8195
37d47f09f981
caught a few more possible glitches in engine cmakefile
koda
parents:
8188
diff
changeset
|
279 |
if((FPC_VERSION VERSION_LESS "2.6") AND (NOVIDEOREC OR NOT ${FFMPEG_FOUND})) |
8379 | 280 |
add_dependencies(hwengine ENGINECLEAN) |
7653 | 281 |
endif() |
184 | 282 |
|
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
|
283 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" DESTINATION ${destination_dir}) |