Skip to content

Commit

Permalink
[SUTK] Added plutvg headers and libraries in the sutk's makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi688 committed Nov 23, 2024
1 parent 921b979 commit bcdb701
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sutk/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ DYNAMIC_LIB_NAME = sutk.dll
EXECUTABLE_NAME = sutk
MAIN_SOURCE_LANG = cpp
MAIN_SOURCES= source/main.cpp
EXTERNAL_INCLUDES = $(shell pkg-config liblunasvg --cflags)
EXTERNAL_LIBRARIES = -L../toolchain/shader_compiler/external-dependency-libs -lshaderc_shared $(shell pkg-config liblunasvg --libs)
EXTERNAL_INCLUDES = $(shell pkg-config libplutovg --cflags) $(shell pkg-config liblunasvg --cflags)
EXTERNAL_LIBRARIES = -L../toolchain/shader_compiler/external-dependency-libs -lshaderc_shared \
$(shell pkg-config liblunasvg --libs) \
$(shell pkg-config libplutovg --libs)
BUILD_DEFINES= -DSGE_VULKAN_DRIVER # TODO: no vulkan, opengl or directx defines should be required, the SGE library must keep the underlying API details into .c files

DEPENDENCIES = ../.. \
Expand Down

0 comments on commit bcdb701

Please sign in to comment.