From d60f5eafdbed12986e0c2918fa53a9f89e8059a8 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Sun, 21 Jul 2013 21:00:51 -0400 Subject: [PATCH] Excluded tests that are not currently supported on building platform --- testing/CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt index 91c059a9..12efc2f4 100644 --- a/testing/CMakeLists.txt +++ b/testing/CMakeLists.txt @@ -2,10 +2,12 @@ cmake_minimum_required(VERSION 2.6.0) cmake_policy(SET CMP0011 NEW) -include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_cryptosendfiletest.cmake) -include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_sendfiletest.cmake) +#include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_cryptosendfiletest.cmake) +#include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_sendfiletest.cmake) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_test.cmake) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Lossless_UDP_testclient.cmake) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Lossless_UDP_testserver.cmake) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Messenger_test.cmake) -include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/nTox.cmake) \ No newline at end of file +if(NOT WIN32) + include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/nTox.cmake) +endif()