Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
/ routeros Public archive

Commit

Permalink
Update compile flags in parser_x3
Browse files Browse the repository at this point in the history
Needs C++11 features to compile.
  • Loading branch information
jacob-baines committed Feb 2, 2019
1 parent f31eee5 commit 94d2fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse_x3/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(PROJECT_NAME x3_parse)

project(${PROJECT_NAME})

set(CMAKE_CXX_FLAGS "-s -O2 -Wall -Wextra -Weffc++ -Wshadow -Wcast-align -Wcast-qual -Woverloaded-virtual -Wstrict-null-sentinel -Wswitch-default -Winit-self -Wlogical-op -Wno-deprecated-declarations -Wshadow")
set(CMAKE_CXX_FLAGS "-std=gnu++0x -s -O2 -Wall -Wextra -Weffc++ -Wshadow -Wcast-align -Wcast-qual -Woverloaded-virtual -Wstrict-null-sentinel -Wswitch-default -Winit-self -Wlogical-op -Wno-deprecated-declarations -Wshadow")

find_package(Boost 1.58 COMPONENTS program_options system regex REQUIRED)

Expand Down

0 comments on commit 94d2fe6

Please sign in to comment.