You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
567 B
16 lines
567 B
include(RccExample.cmake)
|
|
|
|
if(NOT TARGET Qt${with_qt_version}::rcc)
|
|
message(FATAL_ERROR "Qt${with_qt_version}::rcc not found")
|
|
endif()
|
|
|
|
get_target_property(rcc_location Qt${with_qt_version}::rcc IMPORTED_LOCATION)
|
|
set_target_properties(dummy PROPERTIES AUTORCC_OPTIONS "EXE_PATH=${rcc_location}")
|
|
|
|
add_executable(myrcc $<$<CONFIG:Debug>:exe_debug.cpp>
|
|
$<$<CONFIG:Release>:exe_release.cpp>
|
|
$<$<CONFIG:RelWithDebInfo>:exe_relwithdebinfo.cpp>
|
|
)
|
|
|
|
set_target_properties(dummy PROPERTIES AUTORCC_EXECUTABLE $<TARGET_FILE:myrcc>)
|