author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 01 Apr 2019 23:15:18 +0200 | |
changeset 14742 | 123aaa2bf4b5 |
parent 14481 | f86bd14a7613 |
child 15366 | 5c0479d0ed5b |
permissions | -rw-r--r-- |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
1 |
#the usual set of dependencies |
8041 | 2 |
find_package(OpenGL REQUIRED) |
8004 | 3 |
find_package(GLEW REQUIRED) |
11359
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11157
diff
changeset
|
4 |
find_package(SDL2 REQUIRED) |
12391 | 5 |
find_package(SDL2_mixer 2 REQUIRED) |
6 |
find_package(SDL2_net 2 REQUIRED) |
|
7 |
find_package(SDL2_image 2 REQUIRED) |
|
8 |
find_package(SDL2_ttf 2 REQUIRED) |
|
8004 | 9 |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
10 |
#compile our rtl implementation |
9201 | 11 |
include_directories(${GLEW_INCLUDE_DIR}) |
8448
14f736ca7eb3
update FindGLEW to use the same variables as in later CMake files and make sure to include its headers before compiling c stuff
koda
parents:
8332
diff
changeset
|
12 |
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/rtl) |
9264 | 13 |
include_directories(${PHYSFS_INCLUDE_DIR}) |
14 |
include_directories(${PHYSLAYER_INCLUDE_DIR}) |
|
10127 | 15 |
include_directories(${LUA_INCLUDE_DIR}) |
12391 | 16 |
include_directories(${SDL2_INCLUDE_DIRS}) |
8047
25a4daa6473c
cleanup headers, remove -I . from rtl lib to save a few warnings
koda
parents:
8044
diff
changeset
|
17 |
add_subdirectory(rtl) |
7999 | 18 |
|
10747
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
19 |
# convert list into pascal array |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
20 |
if(FONTS_DIRS) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
21 |
list(LENGTH FONTS_DIRS ndirs) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
22 |
set(FONTS_DIRS_ARRAY "array [0..${ndirs}] of PChar = (") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
23 |
foreach(fontdir ${FONTS_DIRS}) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
24 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\n_P'${fontdir}',") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
25 |
endforeach(fontdir) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
26 |
set(FONTS_DIRS_ARRAY "${FONTS_DIRS_ARRAY}\nnil);\n") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
27 |
else(FONTS_DIRS) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
28 |
set(FONTS_DIRS_ARRAY "array [0..1] of PChar = (nil, nil);") |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
29 |
endif(FONTS_DIRS) |
07ade56c3b4a
backporting some build system fixes and pas2c tweaks
sheepluva
parents:
10131
diff
changeset
|
30 |
|
8044 | 31 |
configure_file(${CMAKE_SOURCE_DIR}/hedgewars/config.inc.in ${CMAKE_CURRENT_BINARY_DIR}/config.inc) |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
32 |
|
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
33 |
#get the list of pas files that are going to be converted and compiled |
8044 | 34 |
file(GLOB engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/*.pas") |
35 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uTouch.pas") |
|
36 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/PNGh.pas") |
|
37 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/pas2cSystem.pas") |
|
38 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/pas2cRedo.pas") |
|
39 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/hwLibrary.pas") |
|
14481 | 40 |
if(NOVIDEOREC) |
41 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uVideoRec.pas") |
|
42 |
endif() |
|
11799 | 43 |
if(NOT GL2) |
44 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uMatrix.pas") |
|
45 |
endif() |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
46 |
|
9259
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
47 |
#remove and readd hwengine so that it is compiled first, compiling every other file in the process |
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
48 |
list(REMOVE_ITEM engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/hwengine.pas) |
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
49 |
list(APPEND engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/hwengine.pas) |
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
50 |
|
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
51 |
#process files .pas -> .c |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
52 |
foreach(sourcefile ${engine_sources_pas}) |
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
53 |
get_filename_component(sourcename ${sourcefile} NAME_WE) #drops .pas |
9256
5a2e94a4c2d0
set one rule per file, only compiles a minimum number of files when one pascal file is modified
koda
parents:
9252
diff
changeset
|
54 |
list(APPEND engine_sources "${CMAKE_CURRENT_BINARY_DIR}/${sourcename}.c") |
9978 | 55 |
endforeach() |
9256
5a2e94a4c2d0
set one rule per file, only compiles a minimum number of files when one pascal file is modified
koda
parents:
9252
diff
changeset
|
56 |
|
9978 | 57 |
#add again files for external functions and for fpcrtl_ functions |
58 |
list(APPEND engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/pas2cSystem.pas) |
|
59 |
list(APPEND engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/pas2cRedo.pas) |
|
9976 | 60 |
|
61 |
||
11666 | 62 |
set(pas2c_args -n hwengine |
63 |
-i ${CMAKE_SOURCE_DIR}/hedgewars |
|
64 |
-o ${CMAKE_CURRENT_BINARY_DIR} |
|
65 |
-a ${CMAKE_CURRENT_BINARY_DIR} |
|
66 |
-d ENDIAN_LITTLE |
|
67 |
-d DEBUGFILE) |
|
68 |
if(BUILD_ENGINE_JS) |
|
11796 | 69 |
set(pas2c_args ${pas2c_args} -d WEBGL) |
70 |
endif() |
|
71 |
if(BUILD_ENGINE_LIBRARY) |
|
72 |
set(pas2c_args ${pas2c_args} -d HWLIBRARY) |
|
73 |
endif() |
|
74 |
if(GL2) |
|
75 |
set(pas2c_args ${pas2c_args} -d GL2) |
|
11666 | 76 |
endif() |
77 |
||
14466
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
78 |
if(LIBAV_FOUND) |
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
79 |
add_subdirectory(${CMAKE_SOURCE_DIR}/hedgewars/avwrapper ${CMAKE_CURRENT_BINARY_DIR}/avwrapper) |
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
80 |
list(APPEND HW_LINK_LIBS avwrapper) |
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
81 |
set(pas2c_args ${pas2c_args} -d USE_VIDEO_RECORDING) |
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
82 |
endif() |
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
83 |
|
9978 | 84 |
#invoke pas2c on main module, it will call all the others |
85 |
add_custom_command(OUTPUT ${engine_sources} |
|
86 |
COMMAND "${EXECUTABLE_OUTPUT_PATH}/pas2c${CMAKE_EXECUTABLE_SUFFIX}" |
|
11666 | 87 |
ARGS ${pas2c_args} |
9978 | 88 |
DEPENDS pas2c #converter tool |
89 |
${engine_sources_pas} #original pascal file |
|
90 |
) |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
91 |
|
9256
5a2e94a4c2d0
set one rule per file, only compiles a minimum number of files when one pascal file is modified
koda
parents:
9252
diff
changeset
|
92 |
#wrap conversion for all source in this command |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
93 |
add_custom_target(engine_c DEPENDS ${engine_sources}) |
7999 | 94 |
|
8006 | 95 |
|
11684 | 96 |
if(BUILD_ENGINE_JS) |
11801
50a462b9454a
Add pre/post js stub files and expand the emscripten options
frd
parents:
11799
diff
changeset
|
97 |
add_flag_append(CMAKE_C_FLAGS "--memory-init-file 0 -O0 --js-opts 0 -g4 --use-preload-plugins -s ASSERTIONS=2 -s USE_SDL=2 -s USE_SDL_IMAGE=1 -s USE_LIBPNG=1 -s USE_SDL_TTF=2 -s USE_VORBIS=1 -s USE_OGG=1 -s TOTAL_MEMORY=100000000 -s GL_UNSAFE_OPTS=0 -s EXPORTED_FUNCTIONS=\"['_hwengine_RunEngine', '_hwengine_MainLoop']\" --post-js ${CMAKE_SOURCE_DIR}/project_files/web/post.js --pre-js ${CMAKE_SOURCE_DIR}/project_files/web/pre.js") |
11684 | 98 |
endif() |
99 |
||
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
100 |
#compile the c files |
10127 | 101 |
add_definitions(-DPAS2C) |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
102 |
add_definitions(-Werror=incompatible-pointer-types) |
10127 | 103 |
|
11664
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11659
diff
changeset
|
104 |
add_executable(hwengine WIN32 ${engine_sources}) |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11659
diff
changeset
|
105 |
|
11659 | 106 |
if(BUILD_ENGINE_JS) |
11664
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11659
diff
changeset
|
107 |
set_target_properties(hwengine PROPERTIES SUFFIX ".html") |
11659 | 108 |
endif() |
109 |
||
8029 | 110 |
target_link_libraries(hwengine fpcrtl |
111 |
${LUA_LIBRARY} |
|
112 |
${OPENGL_LIBRARY} |
|
11359
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11157
diff
changeset
|
113 |
${SDL2_LIBRARY} |
12391 | 114 |
${SDL2_MIXER_LIBRARIES} |
115 |
${SDL2_NET_LIBRARIES} |
|
116 |
${SDL2_IMAGE_LIBRARIES} |
|
117 |
${SDL2_TTF_LIBRARIES} |
|
8853
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
118 |
${GLEW_LIBRARY} |
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
119 |
physfs |
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
120 |
physlayer |
9984
84835d0ceb64
Fixed build failure to a missing math library linked with BUILD_ENGINE_C=1 and clang
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9982
diff
changeset
|
121 |
m |
14466
9844450389a4
Attempt to allow building video recording in pas2c mode, currently fails parsing
unc0rr
parents:
12391
diff
changeset
|
122 |
${HW_LINK_LIBS} |
8038 | 123 |
#TODO: add other libraries |
8029 | 124 |
) |
8332
9333216f2054
fix hwc install and pas2c preprocessing (but not total conversion)
koda
parents:
8108
diff
changeset
|
125 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_binary_install_dir}) |
8038 | 126 |