CMakeLists.txt 492 B

123456789101112131415
  1. include_directories (${CMAKE_SOURCE_DIR}/Source/ThirdParty/rapidjson/include
  2. ${CMAKE_SOURCE_DIR}/Source/ThirdParty
  3. ${CMAKE_SOURCE_DIR}/Source/ThirdParty/nativefiledialog)
  4. if (MSVC)
  5. include_directories (${CMAKE_SOURCE_DIR}/Source/ThirdParty/libcurl/include)
  6. add_definitions(-DCURL_STATICLIB)
  7. endif()
  8. file (GLOB_RECURSE SOURCE_FILES Source/*.cpp Source/*.h)
  9. file (GLOB_RECURSE SOURCE_FILES *.cpp *.h)
  10. add_library(ToolCore ${SOURCE_FILES})