Files
antimicrox/tests/CMakeLists.txt
2020-12-02 20:04:10 +01:00

25 lines
713 B
CMake

cmake_minimum_required(VERSION 2.8.11)
project(aboutdialogClass)
# Tell CMake to run moc when necessary:
set(CMAKE_AUTOMOC ON)
# As moc files are generated in the binary dir, tell CMake
# to always look for includes there:
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5Test REQUIRED)
set(GUIS_SRCS testaboutdialog.cpp
testaddeditautoprofiledialog.cpp
testadvancebuttondialog.cpp
testcalibration.cpp
testjoycontrolstickeditdialog.cpp
testbuttoneditdialog.cpp
testquicksetdialog.cpp
testqkeydisplaydialog.cpp
)
add_executable(GuiTests ${GUIS_SRCS})
#target_link_libraries( GuiTests antilib Qt5::Test )
ADD_TEST(NAME GuiTests COMMAND GuiTests)