1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update CMakeLists.txt

This commit is contained in:
Sandu Liviu Catalin 2023-03-05 15:37:30 +02:00
parent d295828545
commit 2a069f3040

View File

@ -3,7 +3,7 @@ project(SqMod)
# This plug-in only works on 64-bit # This plug-in only works on 64-bit
if(CMAKE_SIZEOF_VOID_P EQUAL 4) if(CMAKE_SIZEOF_VOID_P EQUAL 4)
message(FATAL_ERROR "SqMod does not support 32-but platforms anymore.") message(FATAL_ERROR "SqMod does not support 32-bit platforms anymore.")
endif() endif()
# Tell CMake where to find our scripts # Tell CMake where to find our scripts
@ -18,7 +18,7 @@ option(ENABLE_BUILTIN_MYSQL_C "Enable built-in MySQL connector library" OFF)
#option(FORCE_32BIT_BIN "Create a 32-bit executable binary if the compiler defaults to 64-bit." OFF) #option(FORCE_32BIT_BIN "Create a 32-bit executable binary if the compiler defaults to 64-bit." OFF)
# This option should only be available in certain conditions # This option should only be available in certain conditions
if(WIN32 AND MINGW) if(WIN32 AND MINGW)
option(COPY_DEPENDENCIES "Copy deppendent DLLs into the deps folder." OFF) option(COPY_DEPENDENCIES "Copy dependent DLLs into the deps folder." OFF)
endif() endif()
# C++14 is mandatory # C++14 is mandatory