From 2a069f304039746748bdcfb3a6ec71dbc228ed9d Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 5 Mar 2023 15:37:30 +0200 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d01e51ad..dffe8cfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project(SqMod) # This plug-in only works on 64-bit 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() # 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) # This option should only be available in certain conditions 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() # C++14 is mandatory