author | nemo |
Fri, 26 Sep 2014 22:20:12 -0400 | |
changeset 10413 | afd746a538ef |
parent 10238 | 7e20804db6a2 |
child 10416 | 1c301054694d |
child 10747 | 07ade56c3b4a |
child 10778 | 49a0c25ca176 |
permissions | -rw-r--r-- |
9650 | 1 |
find_package(SDL1or2) |
2420 | 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 |
|
9894 | 7 |
include(CheckLibraryExists) |
8 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
|
9224 | 9 |
|
2672 | 10 |
|
8752
48cf2ccb83c6
with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents:
8702
diff
changeset
|
11 |
enable_language(Pascal) |
9883
d6d3be73d427
move CMAKE_Pascal_FLAGS_* flags after enabling the Pascal language or they get overwritten
koda
parents:
9743
diff
changeset
|
12 |
add_flag_append(CMAKE_Pascal_FLAGS "-Cs2000000") |
9886 | 13 |
add_flag_append(CMAKE_Pascal_FLAGS_DEBUG "-gv") |
14 |
add_flag_append(CMAKE_Pascal_FLAGS_RELEASE "-Xs") |
|
9921
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
15 |
if(UNIX) |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
16 |
include(TargetArch) |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
17 |
target_architecture(CMAKE_TARGET_ARCHITECTURES) |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
18 |
if(${CMAKE_Pascal_COMPILER_VERSION} VERSION_GREATER 2.7 OR ${CMAKE_TARGET_ARCHITECTURES} MATCHES "x86_64" OR ${CMAKE_TARGET_ARCHITECTURES} MATCHES "i386") |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
19 |
add_flag_append(CMAKE_Pascal_FLAGS "-fPIC") |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
20 |
endif() |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
21 |
endif(UNIX) |
9883
d6d3be73d427
move CMAKE_Pascal_FLAGS_* flags after enabling the Pascal language or they get overwritten
koda
parents:
9743
diff
changeset
|
22 |
|
9996 | 23 |
# convert list into pascal array |
24 |
list(LENGTH FONTS_DIRS ndirs) |
|
25 |
set(FONTS_DIRS_ARRAY "array [0..${ndirs}] of PChar = (") |
|
26 |
foreach(fontdir ${FONTS_DIRS}) |
|
27 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\n'${fontdir}',") |
|
28 |
endforeach(fontdir) |
|
29 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\nnil);\n") |
|
30 |
||
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
|
31 |
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc) |
8846
c156ac6ddc2b
set directories to be included externally, in the project file
koda
parents:
8843
diff
changeset
|
32 |
include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
2406 | 33 |
|
184 | 34 |
|
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
35 |
#set the sources with the correct order of dependencies so that cmake won't be confused |
2786 | 36 |
set(engine_sources |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
37 |
SDLh.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
38 |
uSinTable.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
39 |
uFloat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
40 |
uConsts.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
41 |
LuaPas.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
42 |
uTypes.pas |
9300 | 43 |
uVariables.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
44 |
uUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
45 |
uMisc.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
46 |
uConsole.pas |
9301
c5d1c8259ef4
break uDebug and uCommand depedency loop by putting stuff in uIO
koda
parents:
9300
diff
changeset
|
47 |
uCommands.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
48 |
uDebug.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
49 |
uInputHandler.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
50 |
uTextures.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
51 |
uRenderUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
52 |
uRender.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
53 |
uCaptions.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
54 |
uIO.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
55 |
uChat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
56 |
uPhysFSLayer.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
57 |
uSound.pas |
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
58 |
ArgParsers.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
59 |
uRandom.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
60 |
uLocale.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
61 |
uStats.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
62 |
uCursor.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
63 |
uVideoRec.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
64 |
uAILandMarks.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
65 |
adler32.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
66 |
uLandTemplates.pas |
9302 | 67 |
uLandTexture.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
68 |
uLandGraphics.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
69 |
uLandPainted.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
70 |
uLandOutline.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
71 |
uLandGenMaze.pas |
10181
4708343d5963
Perlin noise generator untweaked, temporarily replacing maze generator
unc0rr
parents:
10174
diff
changeset
|
72 |
uLandGenPerlin.pas |
10198 | 73 |
uLandGenTemplateBased.pas |
74 |
uLandUtils.pas |
|
9302 | 75 |
|
76 |
#this is where dependency tracking becomes hard |
|
77 |
uStore.pas |
|
78 |
uAmmos.pas |
|
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
79 |
uLandObjects.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
80 |
uLand.pas |
9302 | 81 |
uGearsList.pas |
82 |
uCollisions.pas |
|
8819 | 83 |
uAIMisc.pas |
84 |
uAIActions.pas |
|
9302 | 85 |
uAIAmmoTests.pas |
8819 | 86 |
uAI.pas |
87 |
uWorld.pas |
|
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
88 |
uVisualGearsList.pas |
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
89 |
uVisualGearsHandlers.pas |
8819 | 90 |
uVisualGears.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
91 |
|
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
92 |
uGears.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
93 |
uGame.pas |
4413 | 94 |
uCommandHandlers.pas |
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
95 |
uGearsRender.pas |
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
96 |
uGearsHedgehog.pas |
7370
d50b874e7ee8
Introduce uGearsHandlers.pas, for now only part of cake handlers is moved there
unc0rr
parents:
7233
diff
changeset
|
97 |
uGearsHandlers.pas |
7592 | 98 |
uGearsHandlersRope.pas |
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
99 |
uGearsHandlersMess.pas |
7592 | 100 |
uGearsUtils.pas |
9302 | 101 |
uTeams.pas |
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
102 |
|
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
103 |
#these interact with everything, so compile last |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
104 |
uScript.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
105 |
) |
220 | 106 |
|
7959 | 107 |
|
9963 | 108 |
if(${CMAKE_Pascal_COMPILER_VERSION} VERSION_LESS 2.2 OR # older versions are just ancient |
109 |
(${CMAKE_Pascal_COMPILER_VERSION} VERSION_LESS 2.6 AND APPLE)) # because of 64bit and opengl bindings |
|
8852 | 110 |
message(FATAL_ERROR "Your FreePascal installation is too old (fpc ${CMAKE_Pascal_COMPILER_VERSION})!") |
9965 | 111 |
elseif(${CMAKE_Pascal_COMPILER_VERSION} VERSION_GREATER 2.4) |
8802
ed984e06b435
enable fpc inlining only in release mode only if using fpc > 2.6
koda
parents:
8798
diff
changeset
|
112 |
#enable INLINE only with a recent version of fpc |
8821
e85ff6e298b5
adjust verbosity, move debug/release variables in the right section
koda
parents:
8819
diff
changeset
|
113 |
add_flag_prepend(CMAKE_Pascal_FLAGS_RELEASE -Si) |
8164
b12634f2e1b2
Move noexecstack flags to Freepascal module and refactor.
Bryan Dunsmore <dunsmoreb@gmail.com>
parents:
8162
diff
changeset
|
114 |
endif() |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
115 |
|
9942 | 116 |
#generic folder where our libraries reside |
117 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${LIBRARY_OUTPUT_PATH}") |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
118 |
|
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
|
119 |
#DEPENDECIES AND EXECUTABLES SECTION |
9961 | 120 |
if(APPLE AND (NOT BUILD_ENGINE_LIBRARY)) |
7708 | 121 |
#on OSX we need to provide the SDL_main() function when building as executable |
9271 | 122 |
add_subdirectory(sdlmain) |
123 |
list(APPEND HW_LINK_LIBS SDLmain) |
|
124 |
endif() |
|
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
125 |
|
9959 | 126 |
if(LIBAV_FOUND) |
8811 | 127 |
add_subdirectory(avwrapper) |
8843 | 128 |
list(APPEND HW_LINK_LIBS 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
|
129 |
add_definitions(-dUSE_VIDEO_RECORDING) |
9274 | 130 |
#only for SDL < 2, linking carried out by fpc |
131 |
find_package_or_disable_msg(GLUT NOVIDEOREC "Video recording will not be built") |
|
7538 | 132 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
133 |
|
8770
53481d654691
partial conversion of pascal_flags to CMAKE_Pascal_FLAGS
koda
parents:
8761
diff
changeset
|
134 |
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
|
135 |
if(PNG_FOUND) |
9299
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
136 |
list(INSERT engine_sources 0 PNGh.pas) |
8832 | 137 |
list(REMOVE_AT PNG_LIBRARIES 1) #removing the zlib library path |
138 |
get_filename_component(PNG_LIBRARY_DIR ${PNG_LIBRARIES} PATH) |
|
9942 | 139 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-L${PNG_LIBRARY_DIR} -Fl${PNG_LIBRARY_DIR}") |
9668 | 140 |
add_definitions(-dPNG_SCREENSHOTS) |
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 |
|
10008 | 143 |
if(LUA_SYSTEM) |
9208
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9203
diff
changeset
|
144 |
get_filename_component(LUA_LIBRARY_DIR ${LUA_LIBRARY} PATH) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9203
diff
changeset
|
145 |
get_filename_component(LUA_LIBRARY_NAME ${LUA_LIBRARY} NAME) |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9203
diff
changeset
|
146 |
#NAME_WE would strip the .1 (or .2) next to the ".so" |
acb2492288e5
heavily rework lua discovery and linking, needs testing but it's more similar to what we do for other libraries now
koda
parents:
9203
diff
changeset
|
147 |
string(REGEX REPLACE "${CMAKE_SHARED_LIBRARY_PREFIX}(.*)${CMAKE_SHARED_LIBRARY_SUFFIX}" "\\1" LUA_LIBRARY_NAME "${LUA_LIBRARY_NAME}") |
9230 | 148 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${LUA_LIBRARY_DIR} -XLAlua=${LUA_LIBRARY_NAME}") |
9227 | 149 |
else() |
150 |
add_definitions(-dLUA_INTERNAL) |
|
151 |
list(APPEND HW_LINK_LIBS lua) |
|
152 |
add_flag_append(CMAKE_Pascal_FLAGS "-XLAlua=${lua_output_name}") |
|
8787 | 153 |
endif() |
154 |
||
10008 | 155 |
if(PHYSFS_SYSTEM) |
9942 | 156 |
get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY} PATH) |
157 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY}") |
|
158 |
else() |
|
8843 | 159 |
add_definitions(-dPHYSFS_INTERNAL) |
160 |
list(APPEND HW_LINK_LIBS physfs) |
|
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
161 |
#-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
|
162 |
#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
|
163 |
#(should be harmless on other platforms) |
9942 | 164 |
add_flag_append(CMAKE_Pascal_FLAGS "-XLAphysfs=${physfs_output_name}") |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
165 |
endif() |
8843 | 166 |
list(APPEND HW_LINK_LIBS physlayer) |
8813
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
167 |
|
9942 | 168 |
|
9224 | 169 |
#Mix_Init/Mix_Quit from SDL_mixer 1.2.10 |
170 |
check_library_exists(${SDLMIXER_LIBRARY} Mix_Init "" HAVE_MIXINIT) |
|
8813
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
171 |
if(HAVE_MIXINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
172 |
add_definitions(-dSDL_MIXER_NEWER) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
173 |
endif(HAVE_MIXINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
174 |
|
9224 | 175 |
#IMG_Init/IMG_Quit from SDL_image 1.2.8 |
176 |
check_library_exists(${SDLIMAGE_LIBRARY} IMG_Init "" HAVE_IMGINIT) |
|
8813
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
177 |
if(HAVE_IMGINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
178 |
add_definitions(-dSDL_IMAGE_NEWER) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
179 |
endif(HAVE_IMGINIT) |
a932b10fc1d0
move a few checks so that add_defintions doesn't interfere
koda
parents:
8811
diff
changeset
|
180 |
|
9965 | 181 |
if(${SDL_VERSION} VERSION_GREATER 1.3) |
9650 | 182 |
add_definitions(-dSDL2) |
183 |
endif() |
|
184 |
||
10015 | 185 |
#opengl 2 |
186 |
IF(GL2) |
|
187 |
add_definitions(-dGL2) |
|
188 |
ENDIF(GL2) |
|
189 |
||
9224 | 190 |
#needs to be last |
8775
3cad01db0bae
apply the new macro add_flag_* to set pascal flags, apply add_definitions where appropriate, small cleanup
koda
parents:
8770
diff
changeset
|
191 |
add_definitions(-dDEBUGFILE) |
8823 | 192 |
|
9741
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
193 |
|
9894 | 194 |
# source files are with full path after this |
9743
6e505ea936ad
make all objects depend on .inc files (which are not correctly positioned in list, because cmake can't deal with that
sheepluva
parents:
9741
diff
changeset
|
195 |
set(sourcefiles_sofar "${CMAKE_CURRENT_SOURCE_DIR}/options.inc" "${CMAKE_CURRENT_BINARY_DIR}/config.inc") |
9741
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
196 |
foreach(loop_var ${engine_sources}) |
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
197 |
list(APPEND sourcefiles_sofar "${CMAKE_CURRENT_SOURCE_DIR}/${loop_var}") |
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
198 |
endforeach(loop_var) |
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
199 |
|
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
200 |
|
8823 | 201 |
#SOURCE AND PROGRAMS SECTION |
202 |
if(BUILD_ENGINE_LIBRARY) |
|
9339
14f5f3a1e2f7
some work on cmake_pascal files to better support flags we use, make engine compile as library again
koda
parents:
9302
diff
changeset
|
203 |
message("***Engine will be built as library (experimental)***") |
10160 | 204 |
if(APPLE) |
205 |
if (${current_macosx_version} VERSION_GREATER "10.5") |
|
206 |
# due to compiler/linker issues on Max OS X 10.6 -k-no_order_inits is needed to avoid linking fail |
|
207 |
add_flag_prepend(CMAKE_Pascal_FLAGS "-k-no_order_inits") |
|
208 |
endif() |
|
8823 | 209 |
endif() |
210 |
||
211 |
#workaround for missing <TARGET> support during object generation |
|
212 |
set(engine_output_name "${CMAKE_SHARED_LIBRARY_PREFIX}hwengine${CMAKE_SHARED_LIBRARY_SUFFIX}") |
|
213 |
set(destination_dir ${target_library_install_dir}) |
|
8827 | 214 |
add_flag_prepend(CMAKE_Pascal_FLAGS "-o${LIBRARY_OUTPUT_PATH}/${engine_output_name}") |
8823 | 215 |
|
216 |
add_definitions(-dHWLIBRARY) |
|
10174 | 217 |
set_source_files_properties(hwLibrary.pas PROPERTIES OBJECT_DEPENDS "${sourcefiles_sofar};${CMAKE_CURRENT_SOURCE_DIR}/hwengine.pas") |
9894 | 218 |
add_library(hwengine SHARED hwLibrary.pas) |
8823 | 219 |
else() |
220 |
# no need to change name here because target has same name |
|
221 |
set(engine_output_name "hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
|
222 |
set(destination_dir ${target_binary_install_dir}) |
|
9894 | 223 |
set_source_files_properties(hwengine.pas PROPERTIES OBJECT_DEPENDS "${sourcefiles_sofar}") |
224 |
add_executable(hwengine hwengine.pas) |
|
8823 | 225 |
endif() |
226 |
||
8855
879270f627e0
restore the osx build disabling universal app support
koda
parents:
8852
diff
changeset
|
227 |
#even though not actually used, this will trigger relink if any lib changes |
8843 | 228 |
target_link_libraries(hwengine ${HW_LINK_LIBS}) |
184 | 229 |
|
8798 | 230 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" DESTINATION ${destination_dir}) |