author | unc0rr |
Wed, 05 Mar 2014 00:53:08 +0400 | |
changeset 10176 | ea022e9483c2 |
parent 10131 | 4b4a043111f4 |
child 10747 | 07ade56c3b4a |
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) |
8029 | 4 |
find_package(SDL REQUIRED) |
5 |
find_package(SDL_mixer REQUIRED) |
|
6 |
find_package(SDL_net REQUIRED) |
|
7 |
find_package(SDL_image REQUIRED) |
|
8 |
find_package(SDL_ttf 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}) |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
16 |
include_directories(${SDL_INCLUDE_DIR}) |
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 |
|
8044 | 19 |
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
|
20 |
|
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
21 |
#get the list of pas files that are going to be converted and compiled |
8044 | 22 |
file(GLOB engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/*.pas") |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
23 |
#TODO: temporary until cmake can configure itself accordingly |
8044 | 24 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uWeb.pas") |
25 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uVideoRec.pas") |
|
26 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/uTouch.pas") |
|
27 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/PNGh.pas") |
|
28 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/pas2cSystem.pas") |
|
29 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/pas2cRedo.pas") |
|
30 |
list(REMOVE_ITEM engine_sources_pas "${CMAKE_SOURCE_DIR}/hedgewars/hwLibrary.pas") |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
31 |
|
9259
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
32 |
#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
|
33 |
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
|
34 |
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
|
35 |
|
872dd30deb7b
compile hwengine first, so that all other files are compiled too and don't call pas2c again
koda
parents:
9256
diff
changeset
|
36 |
#process files .pas -> .c |
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
37 |
foreach(sourcefile ${engine_sources_pas}) |
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
38 |
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
|
39 |
list(APPEND engine_sources "${CMAKE_CURRENT_BINARY_DIR}/${sourcename}.c") |
9978 | 40 |
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
|
41 |
|
9978 | 42 |
#add again files for external functions and for fpcrtl_ functions |
43 |
list(APPEND engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/pas2cSystem.pas) |
|
44 |
list(APPEND engine_sources_pas ${CMAKE_SOURCE_DIR}/hedgewars/pas2cRedo.pas) |
|
9976 | 45 |
|
46 |
||
9978 | 47 |
#invoke pas2c on main module, it will call all the others |
48 |
add_custom_command(OUTPUT ${engine_sources} |
|
49 |
COMMAND "${EXECUTABLE_OUTPUT_PATH}/pas2c${CMAKE_EXECUTABLE_SUFFIX}" |
|
50 |
ARGS -n "hwengine" |
|
51 |
-i "${CMAKE_SOURCE_DIR}/hedgewars" |
|
52 |
-o "${CMAKE_CURRENT_BINARY_DIR}" |
|
53 |
-a "${CMAKE_CURRENT_BINARY_DIR}" |
|
9982 | 54 |
-d "ENDIAN_LITTLE" |
55 |
-d "DEBUGFILE" |
|
9978 | 56 |
DEPENDS pas2c #converter tool |
57 |
${engine_sources_pas} #original pascal file |
|
58 |
) |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
59 |
|
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
|
60 |
#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
|
61 |
add_custom_target(engine_c DEPENDS ${engine_sources}) |
7999 | 62 |
|
8006 | 63 |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
64 |
#compile the c files |
10127 | 65 |
add_definitions(-DPAS2C) |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10129
diff
changeset
|
66 |
add_definitions(-Werror=incompatible-pointer-types) |
10127 | 67 |
|
8035
68ec3138c16d
comments and runtime list of files to convert and compile
koda
parents:
8029
diff
changeset
|
68 |
add_executable(hwengine WIN32 ${engine_sources}) |
8029 | 69 |
|
70 |
target_link_libraries(hwengine fpcrtl |
|
71 |
${LUA_LIBRARY} |
|
72 |
${OPENGL_LIBRARY} |
|
73 |
${SDL_LIBRARY} |
|
74 |
${SDLMIXER_LIBRARY} |
|
75 |
${SDLNET_LIBRARY} |
|
76 |
${SDLIMAGE_LIBRARY} |
|
77 |
${SDLTTF_LIBRARY} |
|
8853
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
78 |
${GLEW_LIBRARY} |
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
79 |
physfs |
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
80 |
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
|
81 |
m |
8038 | 82 |
#TODO: add other libraries |
8029 | 83 |
) |
8853
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
84 |
if(APPLE) |
9130
4f4b71da3559
move sdlmain_osx aside in its own folder so its include path is not contaminated
koda
parents:
8853
diff
changeset
|
85 |
target_link_libraries(hwengine IOKit SDLmain) |
8853
ef59a44a9f08
and now engine in c links too (with more manual intervention as of issue 596)
koda
parents:
8448
diff
changeset
|
86 |
endif() |
8029 | 87 |
|
8332
9333216f2054
fix hwc install and pas2c preprocessing (but not total conversion)
koda
parents:
8108
diff
changeset
|
88 |
install(PROGRAMS "${EXECUTABLE_OUTPUT_PATH}/hwengine${CMAKE_EXECUTABLE_SUFFIX}" DESTINATION ${target_binary_install_dir}) |
8038 | 89 |