Skip to content

Commit 00e4555

Browse files
committed
Fix up CMake build (unrelated)
1 parent 81f1300 commit 00e4555

File tree

3 files changed

+2
-32
lines changed

3 files changed

+2
-32
lines changed

CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.2)
33
find_program(CCACHE_PROGRAM ccache)
44
if(CCACHE_PROGRAM)
55
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
6+
message(STATUS "Rule launch compile: ${CCACHE_PROGRAM}")
67
endif()
78

89
set(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")
2324
elseif("${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

src/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ add_subdirectory(util)
165165
add_subdirectory(xmllang)
166166
add_subdirectory(java_bytecode)
167167
add_subdirectory(miniz)
168-
add_subdirectory(musketeer)
169168
add_subdirectory(clobber)
170169
add_subdirectory(cbmc)
171170
add_subdirectory(goto-cc)

src/musketeer/CMakeLists.txt

-30
This file was deleted.

0 commit comments

Comments
 (0)