author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 07 Oct 2019 23:07:41 +0200 | |
changeset 15450 | 88770c206c31 |
parent 15354 | 96254b857257 |
permissions | -rw-r--r-- |
9677 | 1 |
enable_language(Pascal) |
2 |
||
11338 | 3 |
find_package(SDL2 REQUIRED) |
12388 | 4 |
find_package(SDL2_image 2 REQUIRED) |
5 |
find_package(SDL2_net 2 REQUIRED) |
|
6 |
find_package(SDL2_ttf 2 REQUIRED) |
|
7 |
find_package(SDL2_mixer 2 REQUIRED) |
|
2401 | 8 |
|
9894 | 9 |
include(CheckLibraryExists) |
10 |
include(${CMAKE_MODULE_PATH}/utils.cmake) |
|
9224 | 11 |
|
2672 | 12 |
|
8752
48cf2ccb83c6
with lot of hackery, use add_executable on pascal files, SUCCSS
koda
parents:
8702
diff
changeset
|
13 |
enable_language(Pascal) |
11651
42d7f5dbd8dc
Fixes crash Wuzzy and I were encountering in debian fpc 2.6.2 and 3.0.0 after the addition of the uPhysFSLayer dependency to uUtils in rcac74d9075be
nemo
parents:
11397
diff
changeset
|
14 |
add_flag_append(CMAKE_Pascal_FLAGS "-Cs2000000 -B") |
15322
e550096c2322
Remove accidental DEBUG flag in Pascal builds
Wuzzy <Wuzzy2@mail.ru>
parents:
15321
diff
changeset
|
15 |
add_flag_append(CMAKE_Pascal_FLAGS_DEBUG "-gv") |
9886 | 16 |
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
|
17 |
if(UNIX) |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
18 |
include(TargetArch) |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
19 |
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
|
20 |
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
|
21 |
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
|
22 |
endif() |
7227cc2acba1
Fixed fPIC link failure with arm and sparc architectures, fixing issue #757
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9894
diff
changeset
|
23 |
endif(UNIX) |
9883
d6d3be73d427
move CMAKE_Pascal_FLAGS_* flags after enabling the Pascal language or they get overwritten
koda
parents:
9743
diff
changeset
|
24 |
|
9996 | 25 |
# convert list into pascal array |
10747
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
26 |
if(FONTS_DIRS) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
27 |
list(LENGTH FONTS_DIRS ndirs) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
28 |
set(FONTS_DIRS_ARRAY "array [0..${ndirs}] of PChar = (") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
29 |
foreach(fontdir ${FONTS_DIRS}) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
30 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\n_P'${fontdir}',") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
31 |
endforeach(fontdir) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
32 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\nnil);\n") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
33 |
else(FONTS_DIRS) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
34 |
set(FONTS_DIRS_ARRAY "array [0..1] of PChar = (nil, nil);") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10238
diff
changeset
|
35 |
endif(FONTS_DIRS) |
9224 | 36 |
|
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
|
37 |
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
|
38 |
include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
8661
ac8dba27a3f1
replace sdl mixer/image version checking with something more robust
koda
parents:
8611
diff
changeset
|
39 |
|
2672 | 40 |
|
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
|
41 |
#set the sources with the correct order of dependencies so that cmake won't be confused |
2786 | 42 |
set(engine_sources |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
43 |
SDLh.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
44 |
uSinTable.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
45 |
uFloat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
46 |
uConsts.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
47 |
LuaPas.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
48 |
uTypes.pas |
9300 | 49 |
uVariables.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
50 |
uUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
51 |
uMisc.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
52 |
uConsole.pas |
9301
c5d1c8259ef4
break uDebug and uCommand depedency loop by putting stuff in uIO
koda
parents:
9300
diff
changeset
|
53 |
uCommands.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
54 |
uDebug.pas |
14849
9e8c201eae9d
Move Hedgewars key IDs to CSV file
Wuzzy <Wuzzy2@mail.ru>
parents:
13927
diff
changeset
|
55 |
uKeyNames.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
56 |
uInputHandler.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
57 |
uTextures.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
58 |
uRenderUtils.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
59 |
uRender.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
60 |
uCaptions.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
61 |
uIO.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
62 |
uChat.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
63 |
uPhysFSLayer.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
64 |
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
|
65 |
ArgParsers.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
66 |
uRandom.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
67 |
uLocale.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
68 |
uStats.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
69 |
uCursor.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
70 |
uVideoRec.pas |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7718
diff
changeset
|
71 |
uAILandMarks.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
72 |
adler32.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
73 |
uLandTemplates.pas |
9302 | 74 |
uLandTexture.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
75 |
uLandGraphics.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
76 |
uLandPainted.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
77 |
uLandOutline.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
78 |
uLandGenMaze.pas |
10181
4708343d5963
Perlin noise generator untweaked, temporarily replacing maze generator
unc0rr
parents:
10174
diff
changeset
|
79 |
uLandGenPerlin.pas |
10198 | 80 |
uLandGenTemplateBased.pas |
81 |
uLandUtils.pas |
|
9302 | 82 |
|
83 |
#this is where dependency tracking becomes hard |
|
84 |
uStore.pas |
|
85 |
uAmmos.pas |
|
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
86 |
uLandObjects.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
87 |
uLand.pas |
9302 | 88 |
uGearsList.pas |
89 |
uCollisions.pas |
|
8819 | 90 |
uAIMisc.pas |
91 |
uAIActions.pas |
|
9302 | 92 |
uAIAmmoTests.pas |
8819 | 93 |
uAI.pas |
94 |
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
|
95 |
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
|
96 |
uVisualGearsHandlers.pas |
8819 | 97 |
uVisualGears.pas |
8761
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
98 |
|
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
99 |
uGears.pas |
801cf78707f2
partial reodering of units so that dependency tracking is done with cmake
koda
parents:
8756
diff
changeset
|
100 |
uGame.pas |
4413 | 101 |
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
|
102 |
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
|
103 |
uGearsHedgehog.pas |
7370
d50b874e7ee8
Introduce uGearsHandlers.pas, for now only part of cake handlers is moved there
unc0rr
parents:
7233
diff
changeset
|
104 |
uGearsHandlers.pas |
7592 | 105 |
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
|
106 |
uGearsHandlersMess.pas |
7592 | 107 |
uGearsUtils.pas |
9302 | 108 |
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
|
109 |
|
d64f80504749
if you don't add the new pas files here they won't potentially trigger a rebuild anyway
koda
parents:
9285
diff
changeset
|
110 |
#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
|
111 |
uScript.pas |
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4158
diff
changeset
|
112 |
) |
220 | 113 |
|
7959 | 114 |
|
9963 | 115 |
if(${CMAKE_Pascal_COMPILER_VERSION} VERSION_LESS 2.2 OR # older versions are just ancient |
116 |
(${CMAKE_Pascal_COMPILER_VERSION} VERSION_LESS 2.6 AND APPLE)) # because of 64bit and opengl bindings |
|
8852 | 117 |
message(FATAL_ERROR "Your FreePascal installation is too old (fpc ${CMAKE_Pascal_COMPILER_VERSION})!") |
9965 | 118 |
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
|
119 |
#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
|
120 |
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
|
121 |
endif() |
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
122 |
|
9942 | 123 |
#generic folder where our libraries reside |
124 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${LIBRARY_OUTPUT_PATH}") |
|
476
a4e975f70b60
check for noexecstack linker compatibility (MacOS linker)
displacer
parents:
433
diff
changeset
|
125 |
|
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 |
#DEPENDECIES AND EXECUTABLES SECTION |
9961 | 127 |
if(APPLE AND (NOT BUILD_ENGINE_LIBRARY)) |
10973
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
128 |
#OpenGL deps |
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
129 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-framework -kCocoa") |
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
130 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-framework -kOpenGL") |
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
131 |
|
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
132 |
#set the correct library or framework style depending on the main SDL |
11382 | 133 |
string(FIND "${SDL2_LIBRARY}" "dylib" sdl_framework) |
10973
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
134 |
if(${sdl_framework} GREATER -1) |
11382 | 135 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-lsdl2 -k-lsdl2_image -k-lsdl2_mixer -k-lsdl2_ttf -k-lsdl2_net") |
10973
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
136 |
else() |
11382 | 137 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-framework -kSDL2 -k-framework -kSDL2_image -k-framework -kSDL2_mixer -k-framework -kSDL2_net -k-framework -kSDL2_net -k-framework -kSDL2_ttf") |
10973
36b84888934c
Move OSX SDL library configuration from SDLh to proper CMakeLists
koda
parents:
10803
diff
changeset
|
138 |
endif() |
9271 | 139 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
140 |
|
9959 | 141 |
if(LIBAV_FOUND) |
8811 | 142 |
add_subdirectory(avwrapper) |
8843 | 143 |
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
|
144 |
add_definitions(-dUSE_VIDEO_RECORDING) |
7538 | 145 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
146 |
|
15319 | 147 |
if(NOT WIN32) |
148 |
find_package_or_disable_msg(PNG NOPNG "Screenshots will be saved in BMP") |
|
149 |
if(PNG_FOUND) |
|
150 |
list(INSERT engine_sources 0 PNGh.pas) |
|
151 |
list(REMOVE_AT PNG_LIBRARIES 1) #removing the zlib library path |
|
152 |
get_filename_component(PNG_LIBRARY_DIR ${PNG_LIBRARIES} PATH) |
|
153 |
add_flag_append(CMAKE_Pascal_FLAGS "-k-L${PNG_LIBRARY_DIR} -Fl${PNG_LIBRARY_DIR}") |
|
154 |
add_definitions(-dPNG_SCREENSHOTS) |
|
155 |
endif() |
|
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
156 |
endif() |
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
157 |
|
10008 | 158 |
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
|
159 |
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
|
160 |
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
|
161 |
#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
|
162 |
string(REGEX REPLACE "${CMAKE_SHARED_LIBRARY_PREFIX}(.*)${CMAKE_SHARED_LIBRARY_SUFFIX}" "\\1" LUA_LIBRARY_NAME "${LUA_LIBRARY_NAME}") |
9230 | 163 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${LUA_LIBRARY_DIR} -XLAlua=${LUA_LIBRARY_NAME}") |
9227 | 164 |
else() |
165 |
add_definitions(-dLUA_INTERNAL) |
|
166 |
list(APPEND HW_LINK_LIBS lua) |
|
167 |
add_flag_append(CMAKE_Pascal_FLAGS "-XLAlua=${lua_output_name}") |
|
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
|
168 |
endif() |
7655 | 169 |
|
13886
99b265e0d1d0
Drop internal PhysFS, bump PhysFS requirement to 3.0.0
Wuzzy <Wuzzy2@mail.ru>
parents:
12388
diff
changeset
|
170 |
# PhysFS |
99b265e0d1d0
Drop internal PhysFS, bump PhysFS requirement to 3.0.0
Wuzzy <Wuzzy2@mail.ru>
parents:
12388
diff
changeset
|
171 |
get_filename_component(PHYSFS_LIBRARY_DIR ${PHYSFS_LIBRARY} PATH) |
99b265e0d1d0
Drop internal PhysFS, bump PhysFS requirement to 3.0.0
Wuzzy <Wuzzy2@mail.ru>
parents:
12388
diff
changeset
|
172 |
add_flag_append(CMAKE_Pascal_FLAGS "-Fl${PHYSFS_LIBRARY}") |
99b265e0d1d0
Drop internal PhysFS, bump PhysFS requirement to 3.0.0
Wuzzy <Wuzzy2@mail.ru>
parents:
12388
diff
changeset
|
173 |
|
8843 | 174 |
list(APPEND HW_LINK_LIBS physlayer) |
7655 | 175 |
|
9942 | 176 |
|
10015 | 177 |
#opengl 2 |
178 |
IF(GL2) |
|
179 |
add_definitions(-dGL2) |
|
180 |
ENDIF(GL2) |
|
9650 | 181 |
|
9224 | 182 |
#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
|
183 |
add_definitions(-dDEBUGFILE) |
9203
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9151
diff
changeset
|
184 |
|
9741
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
185 |
|
9894 | 186 |
# 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
|
187 |
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
|
188 |
foreach(loop_var ${engine_sources}) |
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
189 |
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
|
190 |
endforeach(loop_var) |
cf086f49516b
make source files objects depend on their predecessors in list
sheepluva
parents:
9668
diff
changeset
|
191 |
|
13927 | 192 |
if (WIN32 AND VCPKG_TOOLCHAIN) |
193 |
add_definitions(-dWIN32_VCPKG) |
|
15323 | 194 |
add_flag_append(CMAKE_Pascal_FLAGS_DEBUG "-dVCPKG_DEBUG") |
13927 | 195 |
endif() |
196 |
||
15354
96254b857257
update windows build to detect when a cross-compiler is necessary
alfadur
parents:
15343
diff
changeset
|
197 |
if (WIN32_WIN64_CROSS_COMPILE) |
96254b857257
update windows build to detect when a cross-compiler is necessary
alfadur
parents:
15343
diff
changeset
|
198 |
add_flag_append(CMAKE_Pascal_FLAGS "-Px86_64 -Twin64") |
96254b857257
update windows build to detect when a cross-compiler is necessary
alfadur
parents:
15343
diff
changeset
|
199 |
endif() |
9741
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() |
7954 | 210 |
|
8823 | 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() |
15343
06e5f9ec5f8d
Handle a possible linker error on macOS
raptor <buckyballreaction@gmail.com>
parents:
15323
diff
changeset
|
220 |
if(APPLE) |
06e5f9ec5f8d
Handle a possible linker error on macOS
raptor <buckyballreaction@gmail.com>
parents:
15323
diff
changeset
|
221 |
# Handle large linker install_names |
06e5f9ec5f8d
Handle a possible linker error on macOS
raptor <buckyballreaction@gmail.com>
parents:
15323
diff
changeset
|
222 |
add_flag_prepend(CMAKE_Pascal_FLAGS "-k-headerpad_max_install_names") |
06e5f9ec5f8d
Handle a possible linker error on macOS
raptor <buckyballreaction@gmail.com>
parents:
15323
diff
changeset
|
223 |
endif() |
06e5f9ec5f8d
Handle a possible linker error on macOS
raptor <buckyballreaction@gmail.com>
parents:
15323
diff
changeset
|
224 |
|
8823 | 225 |
# no need to change name here because target has same name |
226 |
set(engine_output_name "hwengine${CMAKE_EXECUTABLE_SUFFIX}") |
|
227 |
set(destination_dir ${target_binary_install_dir}) |
|
9894 | 228 |
set_source_files_properties(hwengine.pas PROPERTIES OBJECT_DEPENDS "${sourcefiles_sofar}") |
229 |
add_executable(hwengine hwengine.pas) |
|
7538 | 230 |
endif() |
7112
38c5d56c4d6e
rename a few internal cmake variables (for consistency and readability)
koda
parents:
7109
diff
changeset
|
231 |
|
8855
879270f627e0
restore the osx build disabling universal app support
koda
parents:
8852
diff
changeset
|
232 |
#even though not actually used, this will trigger relink if any lib changes |
8843 | 233 |
target_link_libraries(hwengine ${HW_LINK_LIBS}) |
184 | 234 |
|
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
|
235 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/${engine_output_name}" DESTINATION ${destination_dir}) |