1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/module/Vendor/CMakeLists.txt
Sandu Liviu Catalin b08e9a2f3a Make MySQL optional.
Only windows for now.
2020-03-22 18:57:00 +02:00

14 lines
333 B
CMake

add_subdirectory(SimpleIni)
add_subdirectory(AES256)
add_subdirectory(B64)
add_subdirectory(Hash)
add_subdirectory(MaxmindDB)
add_subdirectory(PUGIXML)
add_subdirectory(SQLite)
add_subdirectory(TinyDir)
add_subdirectory(Whirlpool)
# Build our own mysql client on windows
if(WIN32 AND ENABLE_MYSQL)
add_subdirectory(MDBC)
endif()