diff --git a/Host/BootCommander.exe b/Host/BootCommander.exe index dd47d505..e7864d5d 100644 Binary files a/Host/BootCommander.exe and b/Host/BootCommander.exe differ diff --git a/Host/Source/BootCommander/CMakeLists.txt b/Host/Source/BootCommander/CMakeLists.txt index 3c30a57f..03393fbd 100644 --- a/Host/Source/BootCommander/CMakeLists.txt +++ b/Host/Source/BootCommander/CMakeLists.txt @@ -25,7 +25,7 @@ # \endinternal #**************************************************************************************** # Specify the version being used aswell as the language -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.15) #**************************************************************************************** @@ -84,6 +84,13 @@ elseif(UNIX) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPLATFORM_LINUX -pthread -std=gnu99") endif(WIN32) +# Configure a statically linked run-time library for msvc +if(WIN32) + if(CMAKE_C_COMPILER_ID MATCHES MSVC) + set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") + endif() +endif(WIN32) + #*************************************************************************************** # Includes diff --git a/Host/Source/LibOpenBLT/CMakeLists.txt b/Host/Source/LibOpenBLT/CMakeLists.txt index e347410d..3d2107ae 100644 --- a/Host/Source/LibOpenBLT/CMakeLists.txt +++ b/Host/Source/LibOpenBLT/CMakeLists.txt @@ -25,7 +25,7 @@ # \endinternal #**************************************************************************************** # Specify the version being used aswell as the language -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.15) #**************************************************************************************** @@ -96,6 +96,13 @@ elseif(UNIX) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPLATFORM_LINUX -pthread -std=gnu99") endif(WIN32) +# Configure a statically linked run-time library for msvc +if(WIN32) + if(CMAKE_C_COMPILER_ID MATCHES MSVC) + set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") + endif() +endif(WIN32) + #*************************************************************************************** # Includes diff --git a/Host/Source/SeedNKey/CMakeLists.txt b/Host/Source/SeedNKey/CMakeLists.txt index 0cc8c877..cfb1efff 100644 --- a/Host/Source/SeedNKey/CMakeLists.txt +++ b/Host/Source/SeedNKey/CMakeLists.txt @@ -25,7 +25,7 @@ # \endinternal #**************************************************************************************** # Specify the version being used aswell as the language -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.15) #**************************************************************************************** @@ -80,6 +80,13 @@ elseif(UNIX) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DPLATFORM_LINUX -pthread -std=gnu99") endif(WIN32) +# Configure a statically linked run-time library for msvc +if(WIN32) + if(CMAKE_C_COMPILER_ID MATCHES MSVC) + set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") + endif() +endif(WIN32) + #*************************************************************************************** # Includes diff --git a/Host/libopenblt.dll b/Host/libopenblt.dll index 0d77cc16..5f1710a1 100644 Binary files a/Host/libopenblt.dll and b/Host/libopenblt.dll differ diff --git a/Host/libseednkey.dll b/Host/libseednkey.dll index 39fb3940..5a5bc43e 100644 Binary files a/Host/libseednkey.dll and b/Host/libseednkey.dll differ diff --git a/Host/ucrtbased.dll b/Host/ucrtbased.dll deleted file mode 100644 index 0a84948a..00000000 Binary files a/Host/ucrtbased.dll and /dev/null differ diff --git a/Host/vcruntime140d.dll b/Host/vcruntime140d.dll deleted file mode 100644 index e50e7532..00000000 Binary files a/Host/vcruntime140d.dll and /dev/null differ