remove duplicate line

This commit is contained in:
jason 2025-09-03 21:14:29 +00:00
parent 89031562c6
commit c4181541cb

View File

@ -21,7 +21,7 @@ ifeq ($(strip $(DPP_VERSION)),) # Check if DPP_VERSION is empty (no version foun
LIB_PATHS = $(DPP_PATH)
else
# 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
LIB_PATHS = $(DPP_BUILD_DIR)
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)
# 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)
# List of object files for your executable