File tree Expand file tree Collapse file tree 3 files changed +2
-32
lines changed Expand file tree Collapse file tree 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)
33find_program (CCACHE_PROGRAM ccache)
44if (CCACHE_PROGRAM)
55 set_property (GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM} " )
6+ message (STATUS "Rule launch compile: ${CCACHE_PROGRAM} " )
67 endif ()
78
89set (CMAKE_OSX_DEPLOYMENT_TARGET 10.9)
@@ -19,7 +20,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR
1920 # Ensure NDEBUG is not set for release builds
2021 set (CMAKE_CXX_FLAGS_RELEASE "-O2" )
2122 # Enable lots of warnings
22- set (CMAKE_CXX_FLAGS "-Wall -Wpedantic -Werror" )
23+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror" )
2324elseif ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "MSVC" )
2425 # This would be the place to enable warnings for Windows builds, although
2526 # 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)
165165add_subdirectory (xmllang)
166166add_subdirectory (java_bytecode)
167167add_subdirectory (miniz)
168- add_subdirectory (musketeer)
169168add_subdirectory (clobber)
170169add_subdirectory (cbmc)
171170add_subdirectory (goto-cc)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments