diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-07-19 09:12:36 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-07-19 09:23:28 +0200 |
commit | 3eea106c3c856b1f75823df4b51e3fb152014086 (patch) | |
tree | 986340f4ed071ab5569a3f817c035bc994cc7f95 /Makefile | |
parent | 7de8c84e8f996ece9b5af00ffbca9de9effcb472 (diff) | |
download | sdn-3eea106c3c856b1f75823df4b51e3fb152014086.tar.gz sdn-3eea106c3c856b1f75823df4b51e3fb152014086.tar.xz sdn-3eea106c3c856b1f75823df4b51e3fb152014086.zip |
Explicitly disable GCC's -Wmisleading-indentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ .POSIX: SHELL = /bin/sh -CXXFLAGS = -g -std=c++14 -Wall -Wextra -pedantic +CXXFLAGS = -g -std=c++14 -Wall -Wextra -Wno-misleading-indentation -pedantic CPPFLAGS = `sed -ne '/^project (\([^ )]*\) VERSION \([^ )]*\).*/ \ s//-DPROJECT_NAME="\1" -DPROJECT_VERSION="\2"/p' CMakeLists.txt` |