diff --git a/makefile b/makefile index 1ab1bea..b24dc6e 100644 --- a/makefile +++ b/makefile @@ -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