Update dependency management

This commit is contained in:
2021-03-05 20:54:33 +01:00
parent 11e5c0dcd2
commit 7c25151573
7 changed files with 84 additions and 33 deletions

11
3rdParty/stb/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,11 @@
include(FetchContent)
FetchContent_Declare(
stb
GIT_REPOSITORY https://github.com/nothings/stb.git
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(stb)
add_library(stb INTERFACE)
target_include_directories(stb INTERFACE ${stb_SOURCE_DIR})