We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3effbf commit 4bc3a80Copy full SHA for 4bc3a80
CMakeLists.txt
@@ -1,5 +1,7 @@
1
cmake_minimum_required(VERSION 3.9)
2
-project(kdalgorithms)
+project(kdalgorithms
3
+ LANGUAGES CXX
4
+)
5
6
if(POLICY CMP0077) # Yes, let the parent project set BUILD_TESTING before we include CTest.cmake below
7
cmake_policy(SET CMP0077 NEW)
CMakePresets.json
@@ -33,7 +33,6 @@
33
"name": "gcc",
34
"hidden": true,
35
"cacheVariables": {
36
- "CMAKE_C_COMPILER": "gcc",
37
"CMAKE_CXX_COMPILER": "g++"
38
},
39
"binaryDir": "${sourceDir}/build/${presetName}"
@@ -42,7 +41,6 @@
42
41
"name": "clang",
43
44
45
- "CMAKE_C_COMPILER": "clang",
46
"CMAKE_CXX_COMPILER": "clang++"
47
48
0 commit comments