We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c247e54 commit f874a09Copy full SHA for f874a09
2 files changed
.github/workflows/build-quick.yml
@@ -29,6 +29,8 @@ jobs:
29
ZEL_LIBRARY_PATH: '${{ github.workspace }}/build/lib'
30
working-directory: build
31
run: ctest -V
32
+ - working-directory: build
33
+ run: sudo make install
34
35
build-windows:
36
if: github.repository_owner == 'oneapi-src'
@@ -45,3 +47,5 @@ jobs:
45
47
ZEL_LIBRARY_PATH: '${{ github.workspace }}/build/bin/Release'
46
48
49
run: ctest -C Release -V
50
51
+ run: cmake --build . --config Release --target install
CMakeLists.txt
@@ -53,6 +53,7 @@ endif()
53
include(FetchContent)
54
55
if(BUILD_L0_LOADER_TESTS)
56
+ set(INSTALL_GTEST OFF)
57
FetchContent_Declare(
58
googletest
59
GIT_REPOSITORY https://github.com/google/googletest.git
0 commit comments