diff options
author | unknown <reggie@big_geek.> | 2006-03-03 22:05:40 -0600 |
---|---|---|
committer | unknown <reggie@big_geek.> | 2006-03-03 22:05:40 -0600 |
commit | 8f84c9f99ec92b188c386a07b342a0746ec17965 (patch) | |
tree | 7feddde949f00aed9bf26f177899100fda8d3a06 /win/cmakefiles/vio | |
parent | 405177f1cd08fb3514f14ccaaa94b05d188ec76e (diff) | |
download | mariadb-git-8f84c9f99ec92b188c386a07b342a0746ec17965.tar.gz |
Some cmake script fixes
win/cmakefiles/client:
fix dependencies
win/cmakefiles/libmysql:
fix dependencies
win/cmakefiles/regex:
removed definitions defined here. They are defined globally
win/cmakefiles/strings:
removed definitions defined here. They are defined globally
win/cmakefiles/tests:
fixed dependencies
win/cmakefiles/vio:
removed definitions defined here. They are defined globally
win/cmakefiles/zlib:
removed definitions defined here. They are defined globally
Diffstat (limited to 'win/cmakefiles/vio')
-rw-r--r-- | win/cmakefiles/vio | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/cmakefiles/vio b/win/cmakefiles/vio index 91b51e3793d..a3cbb304289 100644 --- a/win/cmakefiles/vio +++ b/win/cmakefiles/vio @@ -1,6 +1,6 @@ -SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG -DSAFEMALLOC -DSAFE_MUTEX -DUSE_SYMDIR") -SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG -DSAFEMALLOC -DSAFE_MUTEX -DUSE_SYMDIR") +SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG -DSAFEMALLOC -DSAFE_MUTEX") +SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG -DSAFEMALLOC -DSAFE_MUTEX") -ADD_DEFINITIONS(-D_WINDOWS -D__WIN__) +ADD_DEFINITIONS(-DUSE_SYMDIR) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/extra/yassl/include) ADD_LIBRARY(vio vio.c viosocket.c viossl.c viosslfactories.c) |