We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989ae6a commit 4c5b8d3Copy full SHA for 4c5b8d3
CMakeLists.txt
@@ -81,6 +81,13 @@ endif()
81
82
# Tests
83
if(NOT MSVC AND CROW_BUILD_TESTS)
84
+ if(NOT CROW_ENABLE_COMPRESSION)
85
+ message(STATUS "Compression tests are omitted. (Configure with CROW_ENABLE_COMPRESSION=ON to enable them)")
86
+ endif()
87
+ if(NOT CROW_ENABLE_SSL)
88
+ message(STATUS "SSL tests are omitted. (Configure with CROW_ENABLE_SSL=ON to enable them)")
89
90
+
91
add_subdirectory(tests)
92
enable_testing()
93
add_test(NAME crow_test COMMAND ${CMAKE_CURRENT_BINARY_DIR}/tests/unittest)
0 commit comments