Skip to content

Commit

Permalink
add external
Browse files Browse the repository at this point in the history
  • Loading branch information
GraphicsEnthusiast committed Sep 11, 2024
1 parent f60f450 commit e547f63
Show file tree
Hide file tree
Showing 4 changed files with 12,663 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ set(NLOHMANN_JSON_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/nlohmann_jso
set(EMBREE_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/embree/include)
set(EMBREE_LIB_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/embree/lib)

# Add stb
set(STB_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/stb)

# Add tiny
set(TINY_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/external/tiny)

link_directories(
${EMBREE_LIB_DIRS}
)
Expand All @@ -64,6 +70,8 @@ include_directories(
${FMT_INCLUDE_DIRS}
${NLOHMANN_JSON_INCLUDE_DIRS}
${EMBREE_INCLUDE_DIRS}
${STB_INCLUDE_DIRS}
${TINY_INCLUDE_DIRS}
)

add_executable(${PROJECT_NAME}
Expand Down
Loading

0 comments on commit e547f63

Please sign in to comment.