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.
CMakeLists.txt
1 parent 1eb1250 commit c308f9eCopy full SHA for c308f9e
CMakeLists.txt
@@ -55,6 +55,14 @@ set(CMAKE_CXX_STANDARD 20)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)
56
set(CMAKE_CXX_EXTENSIONS OFF)
57
58
+# We enable C here to make all related details and flags
59
+# available in this scope because the `test-security-check.py`
60
+# and `test-symbol-check.py` scripts rely on them. Otherwise,
61
+# C compiler details and flags will only be available within
62
+# the `secp256k1` subtree.
63
+enable_language(C)
64
+
65
66
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/module)
67
68
#=============================
0 commit comments