author | unc0rr |
Wed, 06 Nov 2013 00:59:33 +0400 | |
branch | sdl2transition |
changeset 9677 | 71626318f80e |
parent 9650 | 1c7c87ce37fd |
child 9679 | dfaa39674e1e |
permissions | -rw-r--r-- |
8526 | 1 |
|
9677 | 2 |
if(${USESDL12}) |
3 |
find_package(SDL REQUIRED) |
|
4 |
include_directories(${SDL_INCLUDE_DIR}) |
|
5 |
else(${USESDL12}) |
|
6 |
find_package(SDL2 REQUIRED) |
|
7 |
include_directories(${SDL2_INCLUDE_DIR}) |
|
8 |
endif(${USESDL12}) |
|
9 |
||
8526 | 10 |
include_directories(${PHYSFS_INCLUDE_DIR}) |
11 |
include_directories(${LUA_INCLUDE_DIR}) |
|
12 |
||
13 |
## extra functions needed by Hedgewars |
|
14 |
## TODO: maybe it's better to have them in a separate library? |
|
15 |
set(PHYSLAYER_SRCS |
|
16 |
physfsrwops.c |
|
17 |
physfslualoader.c |
|
18 |
hwpacksmounter.c |
|
19 |
) |
|
20 |
||
9202
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
21 |
#compiles and links actual library |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
22 |
add_library (physlayer ${PHYSLAYER_SRCS}) |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
23 |
#TODO: find good VERSION and SOVERSION values |
9225
d8d929f92633
use target name instead of the resulting library, use more macros around
koda
parents:
9202
diff
changeset
|
24 |
target_link_libraries(physlayer ${SDL_LIBRARY} lua physfs) |
9202
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
25 |
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
|
26 |
LIBRARY DESTINATION ${target_library_install_dir} |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
27 |
ARCHIVE DESTINATION ${target_library_install_dir}) |
4d69569baabb
also physlayer can be comiled as static or shared now
koda
parents:
8526
diff
changeset
|
28 |
get_target_property(physlayer_fullpath physlayer LOCATION) |
8526 | 29 |
|
30 |
||
31 |
## 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
|
32 |
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
|
33 |
set(PHYSLAYER_LIBRARY ${physlayer_fullpath} CACHE STRING "Physlayer library" FORCE) |
8526 | 34 |