-
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.
Merge pull request #31 from njoy/party
Updated to newer version of FetchContent build system.
- Loading branch information
Showing
4 changed files
with
54 additions
and
18 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
10 changes: 1 addition & 9 deletions
10
cmake/elementary_dependencies.cmake → cmake/develop_dependencies.cmake
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,19 @@ | ||
cmake_minimum_required( VERSION 3.14 ) | ||
include( FetchContent ) | ||
|
||
####################################################################### | ||
# Declare project dependencies | ||
####################################################################### | ||
|
||
FetchContent_Declare( catch-adapter | ||
GIT_REPOSITORY https://github.com/njoy/catch-adapter | ||
GIT_TAG fb84b82ebf7a4789aa43cea560680cf745c6ee4f | ||
) | ||
|
||
####################################################################### | ||
# Load dependencies | ||
####################################################################### | ||
|
||
FetchContent_MakeAvailable( | ||
catch-adapter | ||
) |
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