mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-10 07:40:03 -06:00
The RunCMake.AutogenQtX tests occasionally time out so separate `RunCMake.AutogenQtX` tests. Example: https://open.cdash.org/tests/1583599782
16 lines
621 B
CMake
16 lines
621 B
CMake
include(UicExample.cmake)
|
|
|
|
if(NOT TARGET Qt${with_qt_version}::uic)
|
|
message(FATAL_ERROR "Qt${with_qt_version}::uic not found")
|
|
endif()
|
|
|
|
get_target_property(uic_location Qt${with_qt_version}::uic IMPORTED_LOCATION)
|
|
set_target_properties(dummy PROPERTIES AUTOUIC_OPTIONS "EXE_PATH=${uic_location}")
|
|
|
|
add_executable(myuic $<$<CONFIG:Debug>:../Autogen_common/exe_debug.cpp>
|
|
$<$<CONFIG:Release>:../Autogen_common/exe_release.cpp>
|
|
$<$<CONFIG:RelWithDebInfo>:../Autogen_common/exe_relwithdebinfo.cpp>
|
|
)
|
|
|
|
set_target_properties(dummy PROPERTIES AUTOUIC_EXECUTABLE $<TARGET_FILE:myuic>)
|