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 4cb589e commit c2eeeeaCopy full SHA for c2eeeea
.github/workflows/c-cpp.yml
@@ -33,9 +33,17 @@ jobs:
33
python -m pip install --upgrade pip
34
pip install meson ninja
35
36
+ - name: Install vcpkg
37
+ run: |
38
+ git clone https://github.com/Microsoft/vcpkg.git
39
+ .\vcpkg\bootstrap-vcpkg.bat
40
+
41
+ - name: Install Google Test
42
+ run: .\vcpkg\vcpkg install gtest:x64-windows
43
44
# Configure and build with Meson (MSVC will be used automatically)
45
- name: Configure (Meson)
- run: meson setup --warnlevel 2 --buildtype release builddir --backend=ninja
46
+ run: meson setup --warnlevel 2 --Dbuild_tests=true --buildtype release builddir --backend=ninja
47
48
- name: Build (Ninja)
49
run: ninja -C builddir
0 commit comments