author | koda |
Tue, 19 Mar 2013 18:32:22 +0100 | |
branch | cmake_pascal |
changeset 8819 | 8e25b820b360 |
parent 8813 | a932b10fc1d0 |
child 8821 | e85ff6e298b5 |
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 |
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 | 9 |
check_library_exists(${SDLMIXER_LIBRARY} Mix_Init "" HAVE_MIXINIT) |
8669
3f9853888d4f
user correct variable and slimmer test, version typos, .dll.a updated
koda
parents:
8666
diff
changeset
|
10 |
#IMG_Init/IMG_Quit from SDL_image 1.2.8 |
8664 | 11 |
check_library_exists(${SDLIMAGE_LIBRARY} IMG_Init "" HAVE_IMGINIT) |
2672 | 12 |
|
8752
48cf2ccb83c6
with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents:
8702
diff
changeset
|
13 |
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
|
14 |
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc) |
2406 | 15 |
|
3697 | 16 |
#SOURCE AND PROGRAMS SECTION |
8798 | 17 |
if(${BUILD_ENGINE_LIBRARY}) |
18 |
set(engine_output_name "${CMAKE_SHARED_LIBRARY_PREFIX}hwengine${CMAKE_SHARED_LIBRARY_SUFFIX}") |
|
19 |
set(hwengine_project hwLibrary.pas) |
|
20 |
else() |
|
21 |
set(engine_output_name "hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
|
22 |
endif() |
|
8166
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
23 |
|
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
24 |
if (APPLE) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
25 |
set(required_fpc_version 2.6) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
26 |
else() |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
27 |
set(required_fpc_version 2.2) |
5bc0fc0bab4d
Refactor Freepascal module.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8164
diff
changeset
|
28 |
endif() |
184 | 29 |
|
2786 | 30 |
set(engine_sources |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
31 |
SDLh.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
32 |
uSinTable.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
33 |
uFloat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
34 |
uConsts.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
35 |
LuaPas.pas |
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
36 |
PNGh.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
37 |
uTypes.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
38 |
uUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
39 |
uVariables.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
40 |
uMisc.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
41 |
uConsole.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
42 |
uDebug.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
43 |
uCommands.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
44 |
uInputHandler.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
45 |
uTextures.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
46 |
uRenderUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
47 |
uRender.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
48 |
uCaptions.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
49 |
uLandTexture.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
50 |
uIO.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
51 |
uChat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
52 |
uPhysFSLayer.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
53 |
uStore.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
54 |
uSound.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
55 |
uRandom.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
56 |
uLocale.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
57 |
uStats.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
58 |
uCursor.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
59 |
uVideoRec.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
60 |
uAILandMarks.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
61 |
adler32.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
62 |
uLandTemplates.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
63 |
uLandGraphics.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
64 |
uLandPainted.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
65 |
uLandOutline.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
66 |
uLandGenMaze.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
67 |
uLandObjects.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
68 |
uLand.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
69 |
uAmmos.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
70 |
|
8819 | 71 |
uAIMisc.pas |
72 |
uAIActions.pas |
|
73 |
uAI.pas |
|
74 |
uWorld.pas |
|
75 |
uVisualGears.pas |
|
76 |
uTeams.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 |
uGearsList.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
79 |
uCollisions.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
80 |
uAIAmmoTests.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
81 |
uGears.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
82 |
uGame.pas |
4413 | 83 |
uCommandHandlers.pas |
7370
d50b874e7ee8
Introduce uGearsHandlers.pas, for now only part of cake handlers is moved there
unc0rr
parents:
7233
diff
changeset
|
84 |
uGearsHandlers.pas |
7592 | 85 |
uGearsHandlersRope.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
86 |
uGearsHedgehog.pas |
4386 | 87 |
uGearsRender.pas |
7592 | 88 |
uGearsUtils.pas |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
89 |
uScript.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
90 |
hwengine.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
91 |
|
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
92 |
GSHandlers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
93 |
VGSHandlers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
94 |
ArgParsers.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
95 |
options.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
96 |
${CMAKE_CURRENT_BINARY_DIR}/config.inc |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
97 |
) |
220 | 98 |
|
7959 | 99 |
|
8686
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8669
diff
changeset
|
100 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8669
diff
changeset
|
101 |
|
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8669
diff
changeset
|
102 |
find_package_or_fail(FreePascal) |
d303da4568b7
introduce find_package_or_fail/disable to group together similar cmake code
koda
parents:
8669
diff
changeset
|
103 |
|
8665
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8664
diff
changeset
|
104 |
#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
|
105 |
if (FREEPASCAL_VERSION VERSION_LESS required_fpc_version) |
3ff8694d9e22
rewritten findfreepascal, moved checkstack code elsewhere
koda
parents:
8664
diff
changeset
|
106 |
message(FATAL_ERROR "Freepascal ${FREEPASCAL_VERSION} is too old, minimum version required is ${required_fpc_version}") |
8802
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
107 |
elseif(FREEPASCAL_VERSION VERSION_GREATER 2.4) |
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
108 |
#enable INLINE only with a recent version of fpc |
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
109 |
add_flag_append(CMAKE_Pascal_FLAGS_RELEASE -Si) |
8164
b12634f2e1b2
Move noexecstack flags to Freepascal module and refactor.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8162
diff
changeset
|
110 |
endif() |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
111 |
|
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
112 |
|
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
|
113 |
#DEPENDECIES AND EXECUTABLES SECTION |
2652 | 114 |
if(APPLE) |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
115 |
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
|
116 |
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
|
117 |
string(REGEX MATCH "[xX]86_64+" x86_64_build "${CMAKE_OSX_ARCHITECTURES}") |
2652 | 118 |
|
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
119 |
if(powerpc_build) |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
120 |
set(powerpc_build "powerpc") |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
121 |
endif() |
2652 | 122 |
|
7708 | 123 |
#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
|
124 |
if(NOT ${BUILD_ENGINE_LIBRARY}) |
8804 | 125 |
add_subdirectory(sdlmain) |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
126 |
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
|
127 |
endif() |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
128 |
endif(APPLE) |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
129 |
|
8813
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
130 |
if(FFMPEG_FOUND) |
8811 | 131 |
add_subdirectory(avwrapper) |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
132 |
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
|
133 |
add_flag_append(CMAKE_Pascal_FLAGS -Fl${LIBRARY_OUTPUT_PATH}) |
7538 | 134 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
135 |
|
8770
53481d654691
partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents:
8761
diff
changeset
|
136 |
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
|
137 |
if(PNG_FOUND) |
53481d654691
partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents:
8761
diff
changeset
|
138 |
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
|
139 |
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
|
140 |
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
|
141 |
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
|
142 |
|
8787 | 143 |
if(NOT LUA_FOUND) |
8798 | 144 |
add_flag_append(CMAKE_Pascal_FLAGS -k${EXECUTABLE_OUTPUT_PATH}/lib${LUA_LIBRARY}.a) |
8787 | 145 |
#linking with liblua.a requires system readline |
8798 | 146 |
if(UNIX) |
147 |
add_flag_append(CMAKE_Pascal_FLAGS -k-lreadline) |
|
148 |
endif(UNIX) |
|
8787 | 149 |
endif() |
150 |
||
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
151 |
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
|
152 |
#-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
|
153 |
#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
|
154 |
#(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
|
155 |
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
|
156 |
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
|
157 |
endif() |
8752
48cf2ccb83c6
with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents:
8702
diff
changeset
|
158 |
|
8754
0c08d07e791a
this should make cmake-pascal stuff work on linux too
koda
parents:
8752
diff
changeset
|
159 |
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
|
160 |
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
|
161 |
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
|
162 |
add_flag_append(CMAKE_Pascal_FLAGS -Pi386) |
8754
0c08d07e791a
this should make cmake-pascal stuff work on linux too
koda
parents:
8752
diff
changeset
|
163 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
164 |
|
8813
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
165 |
|
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
166 |
if(BUILD_ENGINE_LIBRARY) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
167 |
message(${WARNING} "Engine will be built as library (experimental)") |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
168 |
add_definitions(-dHWLIBRARY) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
169 |
|
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
170 |
# due to compiler/linker issues on Max OS X 10.6 -k-no_order_inits is needed to avoid linking fail |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
171 |
if(APPLE AND current_macosx_version VERSION_GREATER "10.5") |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
172 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-no_order_inits") |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
173 |
endif() |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
174 |
set(destination_dir ${target_library_install_dir}) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
175 |
else(BUILD_ENGINE_LIBRARY) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
176 |
set(destination_dir ${target_binary_install_dir}) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
177 |
endif(BUILD_ENGINE_LIBRARY) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
178 |
|
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
179 |
|
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
180 |
if(HAVE_MIXINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
181 |
add_definitions(-dSDL_MIXER_NEWER) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
182 |
endif(HAVE_MIXINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
183 |
|
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
184 |
if(HAVE_IMGINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
185 |
add_definitions(-dSDL_IMAGE_NEWER) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
186 |
endif(HAVE_IMGINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
187 |
|
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
188 |
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
|
189 |
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
|
190 |
|
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7029
diff
changeset
|
191 |
#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
|
192 |
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
|
193 |
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
|
194 |
endif() |
d5ea24399a48
when Lua is not found, fallback to compiling the one that comes bundled in our sources
koda
parents:
7029
diff
changeset
|
195 |
|
8528 | 196 |
# same for physfs |
197 |
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
|
198 |
target_link_libraries(hwengine physfs) |
8528 | 199 |
endif() |
200 |
||
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
|
201 |
target_link_libraries(hwengine physlayer) |
7967 | 202 |
|
7942
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
203 |
#when ffmpeg/libav is found we need to compile it before engine |
7954 | 204 |
#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
|
205 |
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
|
206 |
target_link_libraries(hwengine avwrapper) |
7942
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
207 |
endif() |
17b3937de37b
avwrapper needs to depend on hwengine not on ENGINECLEAN
koda
parents:
7940
diff
changeset
|
208 |
|
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 |
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
|
210 |
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
|
211 |
endif() |
184 | 212 |
|
8798 | 213 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" DESTINATION ${destination_dir}) |