-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There. I finally cracked. While trying to get CMake to play ball with Tracy I had to devise the next bespoke solution for adding a dependency. Now, we are just using CPM https://github.com/cpm-cmake/CPM.cmake which makes things significantly less painful, if not painless, it's still CMake after all. This means: - No more submodules. Everything is pulled in via CPM. - No more toggling between system packages and submodules. System is preferred, if compatible. - No more ten ways of adding a dependency. It's two now. (I'd prefer one, but what can we do?) - Significantly less code in our build system.
- Loading branch information
1 parent
a292557
commit 660804e
Showing
43 changed files
with
218 additions
and
2,176 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
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
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 |
---|---|---|
@@ -1,31 +0,0 @@ | ||
[submodule "google-benchmark"] | ||
path = ext/google-benchmark | ||
url = https://github.com/google/benchmark.git | ||
branch = main | ||
[submodule "ext/fmt"] | ||
path = ext/fmt | ||
url = https://github.com/fmtlib/fmt.git | ||
branch = master | ||
[submodule "ext/random123"] | ||
path = ext/random123 | ||
url = https://github.com/DEShawResearch/random123.git | ||
branch = main | ||
[submodule "ext/json"] | ||
path = ext/json | ||
url = https://github.com/nlohmann/json.git | ||
branch = master | ||
[submodule "ext/pybind11"] | ||
path = ext/pybind11 | ||
url = https://github.com/pybind/pybind11.git | ||
branch = master | ||
[submodule "ext/googletest"] | ||
path = ext/googletest | ||
url = https://github.com/google/googletest.git | ||
branch = main | ||
[submodule "ext/pugixml"] | ||
path = ext/pugixml | ||
url = https://github.com/zeux/pugixml.git | ||
branch = master | ||
[submodule "ext/units"] | ||
path = ext/units | ||
url = https://github.com/LLNL/units.git | ||
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.