diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2024-03-01 07:20:25 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2024-03-01 07:20:25 +0000 |
| commit | 8aa41c02661ca7ea57a7b39ad4ad1f603c55f21e (patch) | |
| tree | 5c727a68c0ea5d607660d8b34ecda48ea5c28a22 | |
| parent | 5734711ff991c9ee8742925f75c11aeb108e0b5e (diff) | |
Fixup stb dependency
| -rw-r--r-- | CMakeLists.txt | 6 | ||||
| -rw-r--r-- | src/CMakeLists.txt | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fc0fca..65ed5da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,11 +98,11 @@ FetchContent_Declare(cglm GIT_REPOSITORY https://github.com/recp/cglm.git GIT_TAG v0.9.2 ) -FetchContent_Declare(stb_image +FetchContent_Declare(stb GIT_REPOSITORY https://github.com/nothings/stb.git - GIT_TAG b7cf1246284b49dfe7f1288e6f739b7a3a9d966b + GIT_TAG master ) -FetchContent_MakeAvailable(cglm stb_image) +FetchContent_MakeAvailable(cglm stb) ## Glad set(GLAD_HEADER ${CMAKE_BINARY_DIR}/include/glad/gl.h) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7e57adb..4fd2654 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -32,6 +32,7 @@ target_link_libraries(${PROJECT_NAME} glfw OpenGL::GL cglm + stb daw_core daw_rendering daw_ctrl |
