File tree 3 files changed +2
-32
lines changed
3 files changed +2
-32
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.2)
3
3
find_program (CCACHE_PROGRAM ccache)
4
4
if (CCACHE_PROGRAM)
5
5
set_property (GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM} " )
6
+ message (STATUS "Rule launch compile: ${CCACHE_PROGRAM} " )
6
7
endif ()
7
8
8
9
set (CMAKE_OSX_DEPLOYMENT_TARGET 10.9)
@@ -19,7 +20,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR
19
20
# Ensure NDEBUG is not set for release builds
20
21
set (CMAKE_CXX_FLAGS_RELEASE "-O2" )
21
22
# Enable lots of warnings
22
- set (CMAKE_CXX_FLAGS "-Wall -Wpedantic -Werror" )
23
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror" )
23
24
elseif ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "MSVC" )
24
25
# This would be the place to enable warnings for Windows builds, although
25
26
# config.inc doesn't seem to do that currently
Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ add_subdirectory(util)
165
165
add_subdirectory (xmllang)
166
166
add_subdirectory (java_bytecode)
167
167
add_subdirectory (miniz)
168
- add_subdirectory (musketeer)
169
168
add_subdirectory (clobber)
170
169
add_subdirectory (cbmc)
171
170
add_subdirectory (goto-cc)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments