aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother/CMakeLists.txt
blob: be64a0ebf776c7fb6f6f430250f5be7b68764e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(libother)

set(libother_SRC
otherderived.cpp
)

add_definitions("-DLIBOTHER_BUILD")
add_library(libother SHARED ${libother_SRC})
set_property(TARGET libother PROPERTY PREFIX "")

include_directories(${CMAKE_CURRENT_SOURCE_DIR}
                    ${libsample_SOURCE_DIR}
                    ${libsample_SOURCE_DIR}/..)
target_link_libraries(libother libsample)