Files
core_graphics_render/Makefile.project
Timothy Prepscius 20d622f1c6 flatten 20260225
2026-02-25 12:32:21 -05:00

36 lines
723 B
Makefile
Executable File

include $(MAKEDIR)/Makefile.base
# use: ls -d tjp/core/*/ tjp/core/*/*/ | rev | cut -c 2- | rev | sed 's/$/ \\/'
PROJECTS := \
tjp/core/graphics \
tjp/core/graphics/atlas \
tjp/core/graphics/vuku \
tjp/core/graphics/soft \
ifneq (Linux,$(SYS_NAME))
PROJECTS += \
tjp/core/graphics/imgui \
tjp/core/graphics/atlas/vuku \
tjp/core/graphics/atlas/opengl \
endif
ifneq (Darwin,$(SYS_NAME))
_FLAGS := $(_FLAGS) -DGLES_SILENCE_DEPRECATION -DGL_SILENCE_DEPRECATION
endif
#SRC_PCH := tjp/core/Precompile.pch
INCPATH := \
$(timprepscius.libraries.cpp.include) \
$(timprepscius.core.include)
LIBFILE := libCore_Graphics_Render.a
COPYTO := $(LIBRARIES_PROJECT)
include $(MAKEDIR)/Makefile.lib