aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-08-03 07:05:40 -0500
committerBrent Cook <bcook@openbsd.org>2015-08-03 07:05:40 -0500
commit75b90b157cbbbb6c9cba09b15718e241a3b7eee0 (patch)
tree5131520ce40b6999026d2133284e57ba402e7f55 /CMakeLists.txt
parentc66d80a4381f0b492fd62e87deb88944b77efd22 (diff)
downloadportable-75b90b157cbbbb6c9cba09b15718e241a3b7eee0.tar.gz
portable-75b90b157cbbbb6c9cba09b15718e241a3b7eee0.tar.bz2
portable-75b90b157cbbbb6c9cba09b15718e241a3b7eee0.zip
MSVC is not yet ready to build all of the tests
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4e4f9bb..2734bad 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -147,4 +147,6 @@ add_subdirectory(crypto)
147add_subdirectory(ssl) 147add_subdirectory(ssl)
148add_subdirectory(apps) 148add_subdirectory(apps)
149add_subdirectory(tls) 149add_subdirectory(tls)
150add_subdirectory(tests) 150if(NOT MSVC)
151 add_subdirectory(tests)
152endif()