Browse Source

Allow to skip building NanoVG integrated code

pull/338/head
falkTX 4 years ago
parent
commit
c17c260d08
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      dgl/Makefile

+ 5
- 2
dgl/Makefile View File

@@ -62,8 +62,11 @@ endif
# ---------------------------------------------------------------------------------------------------------------------

OBJS_opengl = $(OBJS_common) \
../build/dgl/OpenGL.cpp.opengl.o \
../build/dgl/NanoVG.cpp.opengl.o
../build/dgl/OpenGL.cpp.opengl.o

ifneq ($(SKIP_NANOVG),true)
OBJS_opengl += ../build/dgl/NanoVG.cpp.opengl.o
endif

ifeq ($(MACOS),true)
OBJS_opengl += ../build/dgl/pugl.mm.opengl.o


Loading…
Cancel
Save