Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e5c297

Browse files
committed
A'ight another go at it
1 parent b64aad7 commit 7e5c297

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.15)
22
project(bitreader)
33

44
enable_testing()

bitreader/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.15)
22

33
set(BRCPP_SANITIZER "none" CACHE STRING "Compile with a specific Clang sanitizer (address,undefined,leak,memory,type)")
44

@@ -29,7 +29,8 @@ if (NOT WIN32)
2929
endif()
3030
add_compile_options(-Wall -Wconversion -Wsign-conversion -Werror -pedantic)
3131
else()
32-
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL")
32+
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
33+
message(STATUS "MSVC runtime: ${CMAKE_MSVC_RUNTIME_LIBRARY}")
3334
endif()
3435

3536
set(BITREADER_SOURCES

bitreader/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.15)
22

33
enable_testing()
44

0 commit comments

Comments
 (0)