From 1dff0aca8508e7fae39fd40f1751eab2ecab5482 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Sun, 16 Sep 2018 01:17:14 -0700 Subject: [PATCH] Don't build fspp-test on Windows because it doesn't work yet --- test/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e158d836..d8d77fa8 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,7 +3,10 @@ if (BUILD_TESTING) add_subdirectory(gitversion) add_subdirectory(cpp-utils) - add_subdirectory(fspp) + if (NOT MSVC) + # TODO Make this build on Windows + add_subdirectory(fspp) + endif() add_subdirectory(parallelaccessstore) add_subdirectory(blockstore) add_subdirectory(blobstore)