author | alfadur |
Wed, 16 May 2018 19:36:49 -0400 | |
changeset 13392 | ff1fb8757026 |
parent 12124 | ffc7bb9fde01 |
child 15577 | 107170c05bac |
permissions | -rw-r--r-- |
11374 | 1 |
find_package(SDL2 REQUIRED) |
8526 | 2 |
|
11374 | 3 |
include_directories(${SDL2_INCLUDE_DIR}) |
8526 | 4 |
include_directories(${PHYSFS_INCLUDE_DIR}) |
5 |
include_directories(${LUA_INCLUDE_DIR}) |
|
6 |
||
9270 | 7 |
|
8526 | 8 |
set(PHYSLAYER_SRCS |
9991 | 9 |
physfscompat.c |
8526 | 10 |
physfsrwops.c |
11 |
physfslualoader.c |
|
12 |
hwpacksmounter.c |
|
13 |
) |
|
14 |
||
9202
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
15 |
#compiles and links actual library |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
16 |
add_library (physlayer ${PHYSLAYER_SRCS}) |
12124 | 17 |
set_target_properties(physlayer PROPERTIES |
18 |
VERSION 1.0 |
|
19 |
SOVERSION 1.0) |
|
11374 | 20 |
target_link_libraries(physlayer ${SDL2_LIBRARY} lua physfs) |
9202
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
21 |
install(TARGETS physlayer RUNTIME DESTINATION ${target_binary_install_dir} |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
22 |
LIBRARY DESTINATION ${target_library_install_dir} |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
23 |
ARCHIVE DESTINATION ${target_library_install_dir}) |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
24 |
get_target_property(physlayer_fullpath physlayer LOCATION) |
8526 | 25 |
|
26 |
||
27 |
## added standard variables (FORCE or cmake won't pick 'em) |
|
9202
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
28 |
set(PHYSLAYER_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "Physlayer include dir" FORCE) |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
29 |
set(PHYSLAYER_LIBRARY ${physlayer_fullpath} CACHE STRING "Physlayer library" FORCE) |
8526 | 30 |
|
11659
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11374
diff
changeset
|
31 |
if(BUILD_ENGINE_JS) |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11374
diff
changeset
|
32 |
set_target_properties(physlayer PROPERTIES SUFFIX ".bc") |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11374
diff
changeset
|
33 |
endif() |
71bdf987e41f
Fully support emscripten toolchain in our build system
koda
parents:
11374
diff
changeset
|
34 |