templating
This commit is contained in:
4
makefile
4
makefile
@@ -1,12 +1,12 @@
|
||||
# Directories
|
||||
INCLUDE_DIR = inc
|
||||
INCLUDE_DIRS = include thirdparty/inja/include thirdparty/nlohmann/include
|
||||
SRC_DIR = src
|
||||
BUILD_DIR = build
|
||||
|
||||
# Compiler and linker settings
|
||||
CXX = g++
|
||||
LIBS =
|
||||
CXXFLAGS = -std=c++17 -I $(INCLUDE_DIR)
|
||||
CXXFLAGS = -std=c++17 $(foreach dir,$(INCLUDE_DIRS),-I$(dir))
|
||||
|
||||
# Source and object files
|
||||
SRC = $(wildcard $(SRC_DIR)/*.cpp)
|
||||
|
Reference in New Issue
Block a user