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

set(libother_SRC
number.cpp
otherderived.cpp
otherobjecttype.cpp
othermultiplederived.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)
set_property(TARGET libother PROPERTY PREFIX "")