This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all dependencies to their own cmake files
- Loading branch information
1 parent
189d5b7
commit bdf29d9
Showing
7 changed files
with
26 additions
and
1,979 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
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,10 @@ | ||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
portable-file-dialogs | ||
GIT_REPOSITORY https://github.com/samhocevar/portable-file-dialogs.git | ||
GIT_TAG 7f852d88a480020d7f91957cbcefe514fc95000c | ||
GIT_PROGRESS TRUE | ||
) | ||
message("Fetching portable-file-dialogs") | ||
FetchContent_MakeAvailable(portable-file-dialogs) |
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,10 @@ | ||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
subprocess | ||
GIT_REPOSITORY https://github.com/SpaghettDev/subprocess.git | ||
GIT_TAG 7a641a92eb73e8f39be4d0402efc2c46d5bd1b47 | ||
GIT_PROGRESS TRUE | ||
) | ||
message("Fetching subprocess") | ||
FetchContent_MakeAvailable(subprocess) |
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
Oops, something went wrong.