CMakeLists.txt 297 B

12345678
  1. cmake_minimum_required(VERSION 3.10)
  2. project(RccEmpty)
  3. include("../AutogenTest.cmake")
  4. # Test AUTORCC on a .qrc file with no resource files
  5. add_executable(rccEmpty rccEmpty.cpp rccEmptyRes.qrc)
  6. set_property(TARGET rccEmpty PROPERTY AUTORCC ON)
  7. target_link_libraries(rccEmpty ${QT_QTCORE_TARGET})