mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-02 11:04:00 +01:00
Merge pull request #32 from majestrate/master
add -Wno-misleading-indentation to compile flags
This commit is contained in:
commit
808fb69b34
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@ I2PD_PATH = i2pd
|
||||||
LIBI2PD_PATH = $(I2PD_PATH)/libi2pd
|
LIBI2PD_PATH = $(I2PD_PATH)/libi2pd
|
||||||
LIBI2PD_CLIENT_PATH = $(I2PD_PATH)/libi2pd_client
|
LIBI2PD_CLIENT_PATH = $(I2PD_PATH)/libi2pd_client
|
||||||
CXX = g++
|
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)
|
INCFLAGS = -I$(LIBI2PD_PATH) -I$(LIBI2PD_CLIENT_PATH) -I$(I2PD_PATH)
|
||||||
CXXFLAGS = $(FLAGS) $(INCFLAGS)
|
CXXFLAGS = $(FLAGS) $(INCFLAGS)
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
||||||
|
|
Loading…
Reference in a new issue