CMakeLists.txt 501 B

12345678910111213
  1. include_directories (${CMAKE_SOURCE_DIR}/Source/ThirdParty/rapidjson/include
  2. ${CMAKE_SOURCE_DIR}/Source/ThirdParty
  3. ${CMAKE_SOURCE_DIR}/Source/ThirdParty/Assimp/include
  4. ${CMAKE_SOURCE_DIR}/Source/ThirdParty/nativefiledialog)
  5. file (GLOB_RECURSE SOURCE_FILES *.cpp *.h)
  6. if (APPLE)
  7. file (GLOB_RECURSE PLATFORM_SOURCE_FILES Platforms/Unix/*.cpp Platforms/Unix/*.h)
  8. endif()
  9. add_library(NETCore ${SOURCE_FILES} ${PLATFORM_SOURCE_FILES})