1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 16:47:14 +02:00

Make MySQL optional.

Only windows for now.
This commit is contained in:
Sandu Liviu Catalin
2020-03-22 18:57:00 +02:00
parent d79922d725
commit b08e9a2f3a
3 changed files with 6 additions and 3 deletions

View File

@ -8,6 +8,6 @@ add_subdirectory(SQLite)
add_subdirectory(TinyDir)
add_subdirectory(Whirlpool)
# Build our own mysql client on windows
if(WIN32)
if(WIN32 AND ENABLE_MYSQL)
add_subdirectory(MDBC)
endif(WIN32)
endif()