CMakeLists.txt 669 B

12345678910111213141516171819202122232425262728293031
  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. ctkQtMobilityServiceFactory_p.h
  12. ctkQtMobilityServiceRuntime_p.h
  13. )
  14. SET(PLUGIN_resources
  15. )
  16. ctkFunctionGetTargetLibraries(PLUGIN_target_libraries)
  17. ctkMacroBuildPlugin(
  18. EXPORT_DIRECTIVE ${PLUGIN_export_directive}
  19. SRCS ${PLUGIN_SRCS}
  20. MOC_SRCS ${PLUGIN_MOC_SRCS}
  21. RESOURCES ${PLUGIN_resources}
  22. TARGET_LIBRARIES ${PLUGIN_target_libraries}
  23. )