summaryrefslogtreecommitdiff
path: root/shared/tinyxml/Makefile
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
commit618dfb51d93898632830f1b87443d3f748780871 (patch)
treebac520a2e261154f8d35b0cb8aa345f5ab373811 /shared/tinyxml/Makefile
parent3.4 (diff)
downloadFreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip
3.5
Diffstat (limited to 'shared/tinyxml/Makefile')
-rw-r--r--shared/tinyxml/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/tinyxml/Makefile b/shared/tinyxml/Makefile
index fb8982a2..5ffb9526 100644
--- a/shared/tinyxml/Makefile
+++ b/shared/tinyxml/Makefile
@@ -8,14 +8,14 @@
#****************************************************************************
# DEBUG can be set to YES to include debugging info, or NO otherwise
-DEBUG := YES
+DEBUG := NO
# PROFILE can be set to YES to include profiling info, or NO otherwise
PROFILE := NO
# TINYXML_USE_STL can be used to turn on STL support. NO, then STL
# will not be used. YES will include the STL files.
-TINYXML_USE_STL := YES
+TINYXML_USE_STL := NO
#****************************************************************************
bgstack15