blob: 33feadf3382ea8e67e8b14999f13ce5d898a6718 (
plain)
1
2
3
4
5
6
7
8
|
cmake_minimum_required(VERSION 3.10)
project(MocOnly)
include("../AutogenTest.cmake")
# Test different Q_OBJECT position styles
add_executable(mocOnly StyleA.cpp StyleB.cpp main.cpp)
set_property(TARGET mocOnly PROPERTY AUTOMOC ON)
target_link_libraries(mocOnly ${QT_LIBRARIES})
|