Skip to content

Commit

Permalink
Moved utils from sub branches into a single branch so all problems ar…
Browse files Browse the repository at this point in the history
…e solvable from the primary branch. (#18)
  • Loading branch information
wi-re authored Nov 12, 2024
1 parent 245163b commit c3252c3
Show file tree
Hide file tree
Showing 5 changed files with 1,411 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ file(GLOB_RECURSE PIPELINE_HEADERS
)
target_sources(Template PRIVATE ${PIPELINE_SOURCES} ${PIPELINE_HEADERS})

file(GLOB_RECURSE UTIL_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/util/*.cpp
)

file(GLOB_RECURSE UTIL_HEADERS
${CMAKE_CURRENT_SOURCE_DIR}/src/util/*.h
)
target_sources(Template PRIVATE ${UTIL_SOURCES} ${UTIL_HEADERS})

if(DEV_MODE)
# In dev mode, we load resources from the source tree, so that when we
# dynamically edit resources (like shaders), these are correctly
Expand Down
Loading

0 comments on commit c3252c3

Please sign in to comment.