Files
create/tests/src/Gui/CMakeLists.txt
2025-10-09 13:50:17 -05:00

23 lines
507 B
CMake

# SPDX-License-Identifier: LGPL-2.1-or-later
# Standard C++ GTest tests
add_executable(Gui_tests_run
Assistant.cpp
Camera.cpp
StyleParameters/StyleParametersApplicationTest.cpp
StyleParameters/ParserTest.cpp
StyleParameters/ParameterManagerTest.cpp
InputHintTest.cpp
)
# Qt tests
setup_qt_test(QuantitySpinBox)
target_link_libraries(Gui_tests_run PRIVATE
GTest::gtest_main
GTest::gmock_main
${Google_Tests_LIBS}
FreeCADApp
FreeCADGui
)