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 1c79d86 commit 5a1be95Copy full SHA for 5a1be95
.github/workflows/ci-test.yml
@@ -36,8 +36,6 @@ jobs:
36
restore-keys: |
37
ccache-${{ runner.os }}-build-
38
39
- - run: sudo apt-get install libgtest-dev
40
-
41
- run: npm run build
42
- run: npm run lint
43
- run: npm run test
tests/cpp/CMakeLists.txt
@@ -1,7 +1,12 @@
1
enable_testing()
2
3
-find_package(GTest REQUIRED CONFIG)
4
include(FetchContent)
+FetchContent_Declare(
5
+ googletest
6
+ URL https://github.com/google/googletest/releases/download/v1.16.0/googletest-1.16.0.tar.gz
7
+ DOWNLOAD_EXTRACT_TIMESTAMP TRUE
8
+)
9
+FetchContent_MakeAvailable(googletest)
10
11
file(GLOB test_sources CONFIGURE_DEPENDS *.cpp ./utils/*.cpp) # innclude lit test by default
12
0 commit comments