set(CMAKE_VERBOSE_MAKEFILE ON) (#133)

* set(CMAKE_VERBOSE_MAKEFILE ON)

* -D CMAKE_AR=/usr/bin/ar
This commit is contained in:
Kuba Podgórski 2020-08-18 13:21:05 +02:00 committed by GitHub
parent 6e7dce3daa
commit 529eef88ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ jobs:
- name: Configure
run: |
pip3 install scan-build
scan-build cmake -DSANITIZE_ADDRESS=On .
scan-build cmake -DCMAKE_AR=/usr/bin/ar -DSANITIZE_ADDRESS=On .
- name: Build
run: |
scan-build -v --exclude test -enable-checker security.FloatLoopCounter -enable-checker security.insecureAPI.UncheckedReturn --status-bugs cmake --build .

View File

@ -4,7 +4,7 @@ project(zip
LANGUAGES C
VERSION "0.1.19")
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
set(CMAKE_VERBOSE_MAKEFILE ON)
option(CMAKE_DISABLE_TESTING "Disable test creation" OFF)
if (MSVC)