aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libother/CMakeLists.txt
blob: 0379d740b67fbeec5dda58ecaa47dc6eb0b218ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

project(libother)

set(libother_SRC
extendsnoimplicitconversion.h
libothermacros.h
number.cpp number.h
otherderived.cpp otherderived.h
othermultiplederived.cpp othermultiplederived.h
otherobjecttype.cpp otherobjecttype.h
othertypesystypedef.cpp othertypesystypedef.h
smartptrtester.cpp smartptrtester.h
)

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 "")