Warning, /rolisteam/rolisteam/src/tests/auto/vmap/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 3.16)
0002 
0003 enable_testing(true)
0004 include_directories( test )
0005 
0006 set(CMAKE_AUTOMOC ON)
0007 set(CMAKE_AUTORCC ON)
0008 
0009 set(QT_REQUIRED_VERSION "6.3.0")
0010 find_package(Qt6 ${QT_REQUIRED_VERSION} CONFIG REQUIRED COMPONENTS Test Core Widgets)
0011 
0012 add_executable(tst_vmap tst_vmap.cpp ../assets/resources.qrc)
0013 target_link_libraries(tst_vmap PUBLIC Qt6::Core Qt6::Test Qt6::Widgets PRIVATE core rwidgets instantmessaging common_core common_widget common_qml helper utils diceparser_shared diceparser_qobject network)
0014 target_include_directories(tst_vmap PUBLIC ../helper)
0015 add_test(NAME tst_vmap COMMAND tst_vmap)
0016 
0017 
0018 add_executable(tst_characteritemctrltest tst_vmapitemcontroller.cpp ../assets/resources.qrc)
0019 target_link_libraries(tst_characteritemctrltest PUBLIC Qt6::Core Qt6::Test Qt6::Widgets PRIVATE core rwidgets instantmessaging common_core common_widget common_qml helper network diceparser_shared diceparser_qobject utils)
0020 target_include_directories(tst_characteritemctrltest PUBLIC ../helper)
0021 add_test(NAME tst_characteritemctrltest COMMAND tst_characteritemctrltest)
0022