CMakeLists.txt 225 B

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