Skip to content

Commit 193c4d9

Browse files
authored
Update Makefile
1 parent 01d76a1 commit 193c4d9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Application/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ Dependencies=Dependencies
22
ToolFrameworkCore=$(Dependencies)/ToolFrameworkCore
33
SOURCEDIR=`pwd`
44

5-
CXXFLAGS= -fPIC -O3 -Wpedantic -Wall -std=c++11 -Wno-comment -Wno-unused -Wextra -Wcast-align -Wcast-qual -Wctor-dtor-privacy -Wdisabled-optimization -Wformat=2 -Winit-self -Wlogical-op -Wmissing-declarations -Wmissing-include-dirs -Wnoexcept -Woverloaded-virtual -Wredundant-decls -Wshadow -Wsign-conversion -Wsign-promo -Wstrict-null-sentinel -Wstrict-overflow=5 -Wswitch-default -Wundef #-Werror -Wold-style-cast
5+
CXXFLAGS= -fPIC -Wpedantic -Wall -std=c++11 -Wno-comment -Wno-unused -Wextra -Wcast-align -Wcast-qual -Wctor-dtor-privacy -Wdisabled-optimization -Wformat=2 -Winit-self -Wlogical-op -Wmissing-declarations -Wmissing-include-dirs -Wnoexcept -Woverloaded-virtual -Wredundant-decls -Wshadow -Wsign-conversion -Wsign-promo -Wstrict-null-sentinel -Wstrict-overflow=5 -Wswitch-default -Wundef #-Werror -Wold-style-cast
66

77

88
ifeq ($(MAKECMDGOALS),debug)
99
CXXFLAGS+= -O0 -g -lSegFault -rdynamic -DDEBUG
10+
else
11+
CXXFLAGS+= -O3
1012
endif
1113

1214
DataModelInclude =

0 commit comments

Comments
 (0)