aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libother/CMakeLists.txt
blob: d1e4c435444275ea9feb69adc429b12c89a7c6ad (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
othermultiplederived.cpp
smartptrtester.cpp
)

add_library(libother SHARED ${libother_SRC})
target_include_directories(libother PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libother PRIVATE LIBOTHER_BUILD)
target_link_libraries(libother PUBLIC libsample libsmart)
set_property(TARGET libother PROPERTY PREFIX "")