diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2017-08-28 16:10:25 +0000 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2017-08-30 14:44:18 +0000 |
commit | 43b262af55db507320b165bb0f9abf05b2f05a89 (patch) | |
tree | dbad10bfd5bf0072c1d6392d16b065c321032278 /cmake | |
parent | 49f3fb8feb8552d1d914fecdbbdb006e3edb4a95 (diff) | |
download | mariadb-git-43b262af55db507320b165bb0f9abf05b2f05a89.tar.gz |
One more attempt to fix dependencies with mysqld import/export libraries
with Visual Studio
simplify logic, VS generator seems to have problems if generated file
(with ADD_CUSTOM_COMMAND) depends on another generated file.
So, the fix is just to have mysqld_lib.{def,lib,exp} to be generated in a
single ADD_CUSTOM_COMMAND rather than two steps.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/create_initial_db.cmake.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cmake/create_initial_db.cmake.in b/cmake/create_initial_db.cmake.in index c77e28d882c..baa48847815 100644 --- a/cmake/create_initial_db.cmake.in +++ b/cmake/create_initial_db.cmake.in @@ -82,7 +82,3 @@ EXECUTE_PROCESS ( IF(NOT RESULT EQUAL 0) MESSAGE(FATAL_ERROR "Could not create initial database \n ${OUT} \n ${ERR}") ENDIF() - -EXECUTE_PROCESS ( - COMMAND "@CMAKE_COMMAND@" -E touch ${CMAKE_CURRENT_BINARY_DIR}/initdb.dep -) |