]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tsync/CMakeLists.txt
hla: Provide a directly property based api for property data element.
[simgear.git] / simgear / scene / tsync / CMakeLists.txt
1 include (SimGearComponent)
2
3 set(HEADERS
4     terrasync.hxx
5     )
6
7 set(SOURCES 
8     terrasync.cxx
9     )
10
11 if(LIBSVN_FOUND)
12         add_definitions(${APR_CFLAGS})
13
14         IF(APPLE)
15                 set_property(SOURCE terrasync.cxx PROPERTY COMPILE_FLAGS "-iwithsysroot ${LIBSVN_INCLUDE_DIR}")
16         ELSE()
17                 include_directories(${LIBSVN_INCLUDE_DIR})
18         ENDIF(APPLE)
19
20 endif()
21
22 simgear_component(tsync scene/tsync "${SOURCES}" "${HEADERS}")