CMakeLists.txt 358 B

123456789101112131415
  1. cmake_minimum_required(VERSION 3.10)
  2. project(MocOnly)
  3. include("../AutogenTest.cmake")
  4. add_executable(mocOnly
  5. main.cpp
  6. # Test different Q_OBJECT position styles
  7. StyleA.cpp
  8. StyleB.cpp
  9. # Test different moc_/.moc include positions
  10. IncA.cpp
  11. IncB.cpp
  12. )
  13. set_property(TARGET mocOnly PROPERTY AUTOMOC ON)
  14. target_link_libraries(mocOnly ${QT_LIBRARIES})