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.
10 lines
365 B
10 lines
365 B
cmake_minimum_required(VERSION 3.10)
|
|
project(MocOptions)
|
|
include("../AutogenTest.cmake")
|
|
|
|
# Test extra options passed to moc via AUTOMOC_MOC_OPTIONS
|
|
add_executable(mocOptions Object.cpp main.cpp)
|
|
set_property(TARGET mocOptions PROPERTY AUTOMOC ON)
|
|
set_property(TARGET mocOptions PROPERTY AUTOMOC_MOC_OPTIONS "-nw")
|
|
target_link_libraries(mocOptions ${QT_LIBRARIES})
|