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 3584545 commit 846f7c1Copy full SHA for 846f7c1
.github/workflows/cmake-lint.yml
@@ -23,4 +23,7 @@ jobs:
23
- name: Run cmake-format
24
run: |
25
files=$(git ls-files '**/CMakeLists.txt' 'cmake/*.cmake')
26
- cmake-format --check $files
+ if ! cmake-format --check $files; then
27
+ cmake-format --diff $files
28
+ exit 1
29
+ fi
cmake/configure.cmake
@@ -36,7 +36,8 @@ endif()
36
37
set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
38
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH ON)
39
-set(CMAKE_SKIP_BUILD_RPATH OFF)
+set(
40
+CMAKE_SKIP_BUILD_RPATH OFF)
41
42
if(UNIX)
43
set(COMMON_COMPILER_FLAGS
0 commit comments