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.
18 lines
545 B
18 lines
545 B
enable_language(CXX)
|
|
|
|
function (use_autogen target)
|
|
find_package(Qt5 REQUIRED COMPONENTS Core Widgets)
|
|
set(Qt5Core_VERSION_MAJOR "${Qt5Core_VERSION_MAJOR}" PARENT_SCOPE)
|
|
set(Qt5Core_VERSION_MINOR "${Qt5Core_VERSION_MINOR}" PARENT_SCOPE)
|
|
set_property(TARGET "${target}" PROPERTY AUTOMOC 1)
|
|
set_property(TARGET "${target}" PROPERTY AUTORCC 1)
|
|
set_property(TARGET "${target}" PROPERTY AUTOUIC 1)
|
|
endfunction ()
|
|
|
|
function (wrap_autogen target)
|
|
use_autogen("${target}")
|
|
endfunction ()
|
|
|
|
add_executable(main empty.cpp)
|
|
wrap_autogen(main)
|