Add material library
This commit is contained in:
parent
2d1ba5b90a
commit
2869533db9
73 changed files with 8571 additions and 1 deletions
12
Makefile
12
Makefile
|
@ -18,7 +18,7 @@ LIB_DIR = lib
|
|||
|
||||
STATIC_INCLUDE_DIR = include
|
||||
|
||||
CPPFLAGS = -Isrc/imgui -g -D ASSET_DIR=\"$(ASSET_PREFIX)\"
|
||||
CPPFLAGS = -Isrc/imgui -Isrc/material-colors -g -D ASSET_DIR=\"$(ASSET_PREFIX)\"
|
||||
CFLAGS = -g -D ASSET_DIR=\"$(ASSET_PREFIX)\"
|
||||
LDFLAGS = -g
|
||||
#global LDLIBS
|
||||
|
@ -51,6 +51,16 @@ C_SRC += $(wildcard $(SRC_DIR)/*.c) #GET LIST OF ALL C FILES
|
|||
CPP_SRC += $(wildcard $(SRC_DIR)/*.cpp) #GET LIST OF ALL CPP FILES
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/rlImGui/*.cpp) #GET LIST OF ALL CPP FILES
|
||||
|
||||
|
||||
# BUILD MATERIAL_COLORS SYSETM
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/material-colors/cpp/quantize/celebi.cpp)
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/material-colors/cpp/quantize/wsmeans.cpp)
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/material-colors/cpp/quantize/wu.cpp)
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/material-colors/cpp/quantize/lab.cpp)
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/material-colors/cpp/utils/utils.cpp)
|
||||
EXTRA_DIRS += $(OBJ_DIR)/material-colors/cpp/quantize
|
||||
EXTRA_DIRS += $(OBJ_DIR)/material-colors/cpp/utils
|
||||
|
||||
ifeq ($(IMGUI_MODE), BUILD)
|
||||
CPP_SRC += $(wildcard $(SRC_DIR)/imgui/*.cpp) #GET LIST OF ALL CPP FILES
|
||||
EXTRA_DIRS += $(OBJ_DIR)/imgui
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue