remove duplicate line
This commit is contained in:
parent
89031562c6
commit
c4181541cb
3
makefile
3
makefile
@ -21,7 +21,7 @@ ifeq ($(strip $(DPP_VERSION)),) # Check if DPP_VERSION is empty (no version foun
|
|||||||
LIB_PATHS = $(DPP_PATH)
|
LIB_PATHS = $(DPP_PATH)
|
||||||
else
|
else
|
||||||
# If DPP_VERSION has a value (a version was found), assume custom build path
|
# If DPP_VERSION has a value (a version was found), assume custom build path
|
||||||
DPP_PATH = ../DPP
|
DPP_PATH = $(HOME)/workdir/DPP
|
||||||
DPP_BUILD_DIR = $(DPP_PATH)/build/library
|
DPP_BUILD_DIR = $(DPP_PATH)/build/library
|
||||||
LIB_PATHS = $(DPP_BUILD_DIR)
|
LIB_PATHS = $(DPP_BUILD_DIR)
|
||||||
INC_DIRS = -Iinclude -I$(DPP_PATH)/include/
|
INC_DIRS = -Iinclude -I$(DPP_PATH)/include/
|
||||||
@ -51,7 +51,6 @@ CXX_FLAGS = $(COMMON_FLAGS) -std=c++17 -Wall -g $(INC_DIRS)
|
|||||||
|
|
||||||
# Linker directive flags (L for library search path, l for library)
|
# Linker directive flags (L for library search path, l for library)
|
||||||
# Need to link against the D++ library and pthread (common for C++ applications with threading)
|
# Need to link against the D++ library and pthread (common for C++ applications with threading)
|
||||||
#LDFLAGS = -L$(LIB_PATHS) -ldpp -lpthread -Wl,-rpath=../../../$(LIB_PATHS)
|
|
||||||
LDFLAGS = -L$(LIB_PATHS) -ldpp -lpthread -Wl,-rpath=../../../$(LIB_PATHS)
|
LDFLAGS = -L$(LIB_PATHS) -ldpp -lpthread -Wl,-rpath=../../../$(LIB_PATHS)
|
||||||
|
|
||||||
# List of object files for your executable
|
# List of object files for your executable
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user