diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-04 13:46:56 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-04 13:46:56 +0100 |
commit | 4d0b901a55e1f27cb7e5caedced1ebbb923d366b (patch) | |
tree | 4024c68c71582b00ae9744c81d1046d81085772a | |
parent | a52ea360b37389465113fce4834bb7f6c6a04c0c (diff) | |
download | mariadb-git-4d0b901a55e1f27cb7e5caedced1ebbb923d366b.tar.gz |
Make DEBUGBUILDDIR cached variable, so it can be overriden with cmake -D
-rwxr-xr-x | sql/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 3215194eca9..85970ff5c0a 100755 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -281,7 +281,7 @@ ENDIF() # For Makefile generators we default Debug build directory to ${buildroot}/../debug. GET_FILENAME_COMPONENT(BINARY_PARENTDIR ${CMAKE_BINARY_DIR} PATH) -SET(DEBUGBUILDDIR "${BINARY_PARENTDIR}/debug") +SET(DEBUGBUILDDIR "${BINARY_PARENTDIR}/debug" CACHE INTERNAL "Directory of debug build") IF(WIN32) SET(EXE ".exe") |