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