-
Notifications
You must be signed in to change notification settings - Fork 2
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
e04ed6e
commit f460461
Showing
41 changed files
with
108 additions
and
3,078 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 |
---|---|---|
@@ -1,12 +0,0 @@ | ||
[submodule "dependencies/catch-adapter"] | ||
path = dependencies/catch-adapter | ||
url = https://github.com/njoy/catch-adapter.git | ||
[submodule "dependencies/dimwits"] | ||
path = dependencies/dimwits | ||
url = https://github.com/njoy/DimensionalAnalysis.git | ||
[submodule "dependencies/range-v3-adapter"] | ||
path = dependencies/range-v3-adapter | ||
url = https://github.com/njoy/range-v3-adapter.git | ||
[submodule "dependencies/Log"] | ||
path = dependencies/Log | ||
url = https://github.com/njoy/Log.git | ||
Large diffs are not rendered by default.
Oops, something went wrong.
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,41 @@ | ||
cmake_minimum_required( VERSION 3.14 ) | ||
include( FetchContent ) | ||
|
||
####################################################################### | ||
# Declare project dependencies | ||
####################################################################### | ||
|
||
FetchContent_Declare( range-v3-adapter | ||
GIT_REPOSITORY https://github.com/njoy/range-v3-adapter | ||
GIT_TAG origin/master | ||
GIT_SHALLOW TRUE | ||
) | ||
|
||
FetchContent_Declare( catch-adapter | ||
GIT_REPOSITORY https://github.com/njoy/catch-adapter | ||
GIT_TAG origin/master | ||
GIT_SHALLOW TRUE | ||
) | ||
|
||
FetchContent_Declare( Log | ||
GIT_REPOSITORY https://github.com/njoy/Log | ||
GIT_TAG origin/master | ||
GIT_SHALLOW TRUE | ||
) | ||
|
||
FetchContent_Declare( dimwits | ||
GIT_REPOSITORY https://github.com/njoy/DimensionalAnalysis | ||
GIT_TAG origin/master | ||
GIT_SHALLOW TRUE | ||
) | ||
|
||
####################################################################### | ||
# Load dependencies | ||
####################################################################### | ||
|
||
FetchContent_MakeAvailable( | ||
range-v3-adapter | ||
catch-adapter | ||
Log | ||
dimwits | ||
) |
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,15 @@ | ||
####################################################################### | ||
# Setup | ||
####################################################################### | ||
|
||
message( STATUS "Adding constants unit testing" ) | ||
enable_testing() | ||
|
||
|
||
####################################################################### | ||
# Unit testing directories | ||
####################################################################### | ||
|
||
add_subdirectory( src/constants/CODATA2014/test ) | ||
add_subdirectory( src/constants/CODATA2018/test ) | ||
add_subdirectory( src/constants/math/test ) |
Submodule Log
deleted from
0bdd88
Submodule catch-adapter
deleted from
fb84b8
Submodule dimwits
deleted from
d2b187
Submodule range-v3-adapter
deleted from
e8b1fb
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.