summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Julian Sikorski <belegdol+github@gmail.com>2018-03-18 15:30:55 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2018-03-27 10:19:22 +1100
commit9a154947d1cb61180eb00bffa919e7921c2d5234 (patch)
treee434fe833f804465a46f5824873666f791eea841 /makefile
parent4419ff325aa248de92512a25cd9ef36e5bf22183 (diff)
Added possibility of building using system pugixml
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
index 8e46e9133f2..dd3024c07db 100644
--- a/makefile
+++ b/makefile
@@ -68,6 +68,7 @@
# USE_SYSTEM_LIB_UTF8PROC = 1
# USE_SYSTEM_LIB_GLM = 1
# USE_SYSTEM_LIB_RAPIDJSON = 1
+# USE_SYSTEM_LIB_PUGIXML = 1
# MESA_INSTALL_ROOT = /opt/mesa
# SDL_INSTALL_ROOT = /opt/sdl2
@@ -480,6 +481,10 @@ ifdef USE_SYSTEM_LIB_RAPIDJSON
PARAMS += --with-system-rapidjson='$(USE_SYSTEM_LIB_RAPIDJSON)'
endif
+ifdef USE_SYSTEM_LIB_PUGIXML
+PARAMS += --with-system-pugixml='$(USE_SYSTEM_LIB_PUGIXML)'
+endif
+
# reverse logic for this one
ifdef USE_BUNDLED_LIB_SDL2