This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove cmake submodule & replace with new CMX bootstrapper
- Loading branch information
1 parent
6b82b2c
commit 380094f
Showing
5 changed files
with
16 additions
and
41 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,3 +0,0 @@ | ||
[submodule "cmake"] | ||
path = cmake | ||
url = https://github.com/karmakrafts/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
Submodule cmake
deleted from
e5700f
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 @@ | ||
if (NOT CMX_INCLUDED) | ||
include(FetchContent) | ||
set(CMX_VERSION master) | ||
|
||
FetchContent_Declare( | ||
cmx | ||
GIT_REPOSITORY https://github.com/karmakrafts/cmx.git | ||
GIT_TAG ${CMX_VERSION} | ||
) | ||
FetchContent_MakeAvailable(cmx) | ||
set(CMAKE_MODULE_PATH "${cmx_SOURCE_DIR};") | ||
include(cmx) | ||
|
||
set(CMX_INCLUDED ON) | ||
endif ()# CMX_INCLUDED |
This file was deleted.
Oops, something went wrong.