Browse Source

add -Wno-misleading-indentation to compile flags

pull/32/head
Jeff Becker 7 years ago
parent
commit
574db0ab55
  1. 2
      Makefile

2
Makefile

@ -2,7 +2,7 @@ I2PD_PATH = i2pd @@ -2,7 +2,7 @@ I2PD_PATH = i2pd
LIBI2PD_PATH = $(I2PD_PATH)/libi2pd
LIBI2PD_CLIENT_PATH = $(I2PD_PATH)/libi2pd_client
CXX = g++
FLAGS = -g -Wall -std=c++11
FLAGS = -g -Wall -std=c++11 -Wno-misleading-indentation
INCFLAGS = -I$(LIBI2PD_PATH) -I$(LIBI2PD_CLIENT_PATH) -I$(I2PD_PATH)
CXXFLAGS = $(FLAGS) $(INCFLAGS)
LDFLAGS = -Wl,-rpath,/usr/local/lib

Loading…
Cancel
Save