CMakeLists.txt 314 B

1234567891011121314151617
  1. add_sources(
  2. CachedRegexMatcher.cpp CachedRegexMatcher.h
  3. PlatformUtils.cpp PlatformUtils.h
  4. HelperLauncher.h HelperLauncher.cpp
  5. Utils.cpp Utils.h
  6. Log.cpp Log.h
  7. )
  8. if(APPLE)
  9. add_sources(HelperLaunchd.cpp HelperLaunchd.cpp)
  10. add_subdirectory(osx)
  11. endif(APPLE)
  12. if(WIN32)
  13. add_subdirectory(win)
  14. endif()