Skip to content

Commit 273f614

Browse files
committed
Small fixes
1 parent b95dfbf commit 273f614

File tree

3 files changed

+87
-663
lines changed

3 files changed

+87
-663
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
5757
add_definitions("-DHAVE_STD_UNIQUE_PTR=1") # QuickFIX C++17 compatibility req.
5858

5959
# Common Flags
60-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fexceptions -pedantic-errors")
60+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -fexceptions")
6161

6262
# Debug Flags
6363
set(CMAKE_CXX_FLAGS_DEBUG "-g -DDEBUG")
@@ -72,13 +72,13 @@ if(UNIX AND NOT APPLE)
7272
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
7373
endif(UNIX AND NOT APPLE)
7474

75-
# GCC (Raspbian Buster for Raspberry Pi 4)
75+
# GCC (Raspberry Pi OS)
7676
# Ubuntu rules apply here as well
7777
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7l")
7878
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
7979
endif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7l")
8080

81-
# Clang (macOS Catalina 10.15)
81+
# Clang (macOS 11 Big Sur)
8282
if(APPLE)
8383
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-overloaded-virtual")
8484
include_directories(/usr/local/include)

0 commit comments

Comments
 (0)