diff options
author | 2018-03-18 15:30:55 +0100 | |
---|---|---|
committer | 2018-03-27 10:19:22 +1100 | |
commit | 9a154947d1cb61180eb00bffa919e7921c2d5234 (patch) | |
tree | e434fe833f804465a46f5824873666f791eea841 /makefile | |
parent | 4419ff325aa248de92512a25cd9ef36e5bf22183 (diff) |
Added possibility of building using system pugixml
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |