Warning, /graphics/digikam/core/tests/multithreading/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 #
0002 # SPDX-FileCopyrightText: 2010-2024, Gilles Caulier, <caulier dot gilles at gmail dot com>
0003 #
0004 # SPDX-License-Identifier: BSD-3-Clause
0005 #
0006 
0007 APPLY_COMMON_POLICIES()
0008 
0009 include_directories(
0010     $<TARGET_PROPERTY:Qt${QT_VERSION_MAJOR}::Core,INTERFACE_INCLUDE_DIRECTORIES>
0011     $<TARGET_PROPERTY:Qt${QT_VERSION_MAJOR}::Widgets,INTERFACE_INCLUDE_DIRECTORIES>
0012     $<TARGET_PROPERTY:Qt${QT_VERSION_MAJOR}::Gui,INTERFACE_INCLUDE_DIRECTORIES>
0013 )
0014 
0015 set(multicorerawtopng_gui_SRCS
0016     ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
0017     ${CMAKE_CURRENT_SOURCE_DIR}/processordlg.cpp
0018     ${CMAKE_CURRENT_SOURCE_DIR}/rawtopngconverterthread.cpp
0019 )
0020 
0021 add_executable(multicorerawtopng_gui ${multicorerawtopng_gui_SRCS})
0022 
0023 target_link_libraries(multicorerawtopng_gui
0024 
0025                       digikamcore
0026 
0027                       ${COMMON_TEST_LINK}
0028 )