|
From: <ar...@us...> - 2006-11-08 16:05:51
|
Revision: 563
http://svn.sourceforge.net/xml-cppdom/?rev=563&view=rev
Author: aronb
Date: 2006-11-08 08:05:43 -0800 (Wed, 08 Nov 2006)
Log Message:
-----------
- Handle case where we want _DEBUG defined but use the release runtime.
Modified Paths:
--------------
trunk/cppdom/config.h
Modified: trunk/cppdom/config.h
===================================================================
--- trunk/cppdom/config.h 2006-11-08 14:39:57 UTC (rev 562)
+++ trunk/cppdom/config.h 2006-11-08 16:05:43 UTC (rev 563)
@@ -77,7 +77,7 @@
CPPDOM_STRINGIZE(CPPDOM_VERSION_MINOR) "_" \
CPPDOM_STRINGIZE(CPPDOM_VERSION_PATCH)
-# if defined(_DEBUG)
+# if defined(_DEBUG) && !defined(_USE_RELEASE_RUNTIME)
# define CPPDOM_LIB_RT_OPT "_d"
# else
# define CPPDOM_LIB_RT_OPT ""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|