Skip to content

Commit

Permalink
tests are now enabled on MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
gittiver committed Jul 4, 2023
1 parent 1d41102 commit 3eb8139
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif()
endif()
if (MSVC)
add_compile_options(/bigobj)
endif ()

#####################################
# Define Options
Expand Down Expand Up @@ -94,7 +97,7 @@ if(CROW_BUILD_EXAMPLES)
endif()

# Tests
if(NOT MSVC AND CROW_BUILD_TESTS)
if(CROW_BUILD_TESTS)
if(NOT "compression" IN_LIST CROW_FEATURES)
message(STATUS "Compression tests are omitted. (Configure with CROW_FEATURES containing 'compression' to enable them)")
endif()
Expand Down

0 comments on commit 3eb8139

Please sign in to comment.