From 98e0034780dea2de5b2b59c316a47474ef6055b3 Mon Sep 17 00:00:00 2001 From: Kevin Wasserman Date: Thu, 6 Nov 2014 21:45:36 -0500 Subject: [PATCH] disable unit tests on windows --- json_gssapi/test/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/json_gssapi/test/CMakeLists.txt b/json_gssapi/test/CMakeLists.txt index f4c2ff0..ab09be3 100644 --- a/json_gssapi/test/CMakeLists.txt +++ b/json_gssapi/test/CMakeLists.txt @@ -7,7 +7,8 @@ if (GLIB2_FOUND) include_directories(${GLIB2_INCLUDE_DIRS}) endif(GLIB2_FOUND) - +if (WIN32) +else (WIN32) add_executable(test GSSExceptionTest.cpp GSSAcquireCredTest.cpp GSSGetMicTest.cpp @@ -50,8 +51,8 @@ add_executable(test GSSExceptionTest.cpp ) target_link_libraries(test cppunit gssapi_krb5 jansson crypto ${GLIB2_LIBRARIES}) - # install(TARGETS test RUNTIME DESTINATION bin) +endif(WIN32) add_subdirectory(datamodel) add_subdirectory(command_mocks) -- 2.1.4