-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18bd8af
commit 73d8e98
Showing
7 changed files
with
551 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
/out/ | ||
/cmake-build-debug/ | ||
/cmake-build-debug-visual-studio/ | ||
/cmake-build-release-visual-studio/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
include(FetchContent) | ||
# FetchContent_MakeAvailable was not added until CMake 3.14 | ||
if(${CMAKE_VERSION} VERSION_LESS 3.14) | ||
include(add_FetchContent_MakeAvailable.cmake) | ||
endif() | ||
|
||
set(DR_LIBS_GIT_TAG 9eed1be421749ba68a87e5b4c3b10858f8580689) | ||
set(DR_LIBS_GIT_URL https://github.com/mackron/dr_libs) | ||
set(BUILD_SHARED_LIBS OFF) | ||
|
||
FetchContent_Declare( | ||
dr_libs | ||
GIT_REPOSITORY ${DR_LIBS_GIT_URL} | ||
GIT_TAG ${DR_LIBS_GIT_TAG} | ||
) | ||
|
||
FetchContent_MakeAvailable(dr_libs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.