summaryrefslogtreecommitdiff
path: root/dbug
diff options
context:
space:
mode:
authorkent@mysql.com/kent-amd64.(none) <>2007-08-03 21:51:37 +0200
committerkent@mysql.com/kent-amd64.(none) <>2007-08-03 21:51:37 +0200
commita6d082f36de35794006fd7bcb5495eeaf2dd7e82 (patch)
treee1463cc69b98560699aa561754652f5db4e1e3a2 /dbug
parent52f71ecc677825126699f3d682a62494a2259506 (diff)
downloadmariadb-git-a6d082f36de35794006fd7bcb5495eeaf2dd7e82.tar.gz
CMakeLists.txt, README, configure.js
Several adjustments to make client libraries pass the link test on both win32 and winx64, Visual Studio 2003 and 2005 (bug#30118)
Diffstat (limited to 'dbug')
-rwxr-xr-xdbug/CMakeLists.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/dbug/CMakeLists.txt b/dbug/CMakeLists.txt
index 34f44f9a720..8b27f79dcf4 100755
--- a/dbug/CMakeLists.txt
+++ b/dbug/CMakeLists.txt
@@ -13,7 +13,12 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DSAFEMALLOC -DSAFE_MUTEX")
+INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/dbug)
-INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
-ADD_LIBRARY(dbug dbug.c factorial.c sanity.c)
+SET(DBUG_SOURCES dbug.c factorial.c sanity.c)
+
+IF(NOT SOURCE_SUBLIBS)
+ SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DSAFEMALLOC -DSAFE_MUTEX")
+ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
+ ADD_LIBRARY(dbug ${DBUG_SOURCES})
+ENDIF(NOT SOURCE_SUBLIBS)