We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0cd359 commit 9531f1cCopy full SHA for 9531f1c
.github/workflows/test.yml
@@ -43,11 +43,11 @@ jobs:
43
if: ${{ matrix.compiler == 'llvm' && matrix.os == 'macos-latest' }}
44
45
- name: Configure for native compiler
46
- run: cmake -B build -DBUILD_TESTS=YES
+ run: cmake -B build -DCPPSPEC_BUILD_TESTS=YES
47
if: ${{ matrix.compiler == 'native'}}
48
49
- name: Configure for non-native compiler
50
- run: cmake -B build -G Ninja -DBUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
+ run: cmake -B build -G Ninja -DCPPSPEC_BUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
51
if: ${{ matrix.compiler != 'native'}}
52
53
- name: Build
0 commit comments