We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950b898 commit c38aef4Copy full SHA for c38aef4
CMakeLists.txt
@@ -5,6 +5,8 @@ if(POLICY CMP0144)
5
endif()
6
include(FetchContent)
7
8
+set(C2PY_BRANCH "0.1.x")
9
+
10
project(clair VERSION 0.1.0 LANGUAGES C CXX)
11
get_directory_property(IS_SUBPROJECT PARENT_DIRECTORY)
12
if (IS_SUBPROJECT)
test/CMakeLists.txt
@@ -5,7 +5,7 @@ set(IS_CLAIR_BUILD ON)
FetchContent_Declare(
c2py
GIT_REPOSITORY https://github.com/flatironinstitute/c2py
- GIT_TAG unstable
+ GIT_TAG ${C2PY_BRANCH}
EXCLUDE_FROM_ALL # we exclude from all so that c2py is NOT installed.
)
FetchContent_MakeAvailable(c2py)
0 commit comments