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

set(libother_SRC
number.cpp
otherderived.cpp
otherobjecttype.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)