CMakeLists.txt 632 B

123456789101112131415161718192021222324252627282930
  1. PROJECT(org_commontk_qtmobility_service)
  2. SET(PLUGIN_export_directive "org_commontk_qtmobsfw_EXPORT")
  3. SET(PLUGIN_SRCS
  4. ctkQtMobilityServiceActivator.cpp
  5. ctkQtMobilityServiceConstants.cpp
  6. ctkQtMobilityServiceFactory.cpp
  7. ctkQtMobilityServiceRuntime.cpp
  8. )
  9. SET(PLUGIN_MOC_SRCS
  10. ctkQtMobilityServiceActivator_p.h
  11. ctkQtMobilityServiceRuntime_p.h
  12. )
  13. SET(PLUGIN_resources
  14. )
  15. ctkMacroGetTargetLibraries(PLUGIN_target_libraries)
  16. ctkMacroBuildPlugin(
  17. EXPORT_DIRECTIVE ${PLUGIN_export_directive}
  18. SRCS ${PLUGIN_SRCS}
  19. MOC_SRCS ${PLUGIN_MOC_SRCS}
  20. RESOURCES ${PLUGIN_resources}
  21. TARGET_LIBRARIES ${PLUGIN_target_libraries}
  22. )