* findDependencies.cmake: cleaned up find_package() call for Qt * some CMake preparations for Qt6 support * some Qt6 compilation fixes
11 lines
630 B
CMake
11 lines
630 B
CMake
qt_wrap_cpp(test-projectfile_SRC testprojectfile.h ${CMAKE_SOURCE_DIR}/gui/projectfile.h)
|
|
add_custom_target(build-projectfile-deps SOURCES ${test-projectfile_SRC})
|
|
add_dependencies(gui-build-deps build-projectfile-deps)
|
|
add_executable(test-projectfile
|
|
${test-projectfile_SRC}
|
|
testprojectfile.cpp
|
|
${CMAKE_SOURCE_DIR}/gui/projectfile.cpp
|
|
)
|
|
target_include_directories(test-projectfile PRIVATE ${CMAKE_SOURCE_DIR}/gui ${CMAKE_SOURCE_DIR}/lib)
|
|
target_compile_definitions(test-projectfile PRIVATE SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}")
|
|
target_link_libraries(test-projectfile ${QT_CORE_LIB} ${QT_TEST_LIB}) |