From 753e2082851b67163dda4764e08c8ce9b84690fe Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 22 Dec 2010 15:40:53 -0500 Subject: [PATCH] Disable incremental testing for this test, it crashes vs9 linker. On windows 7 64 bit, the vs9 linker will crash when linking an application with a resource in it. --- Tests/VSResource/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/VSResource/CMakeLists.txt b/Tests/VSResource/CMakeLists.txt index 8a71bd048..e84295554 100644 --- a/Tests/VSResource/CMakeLists.txt +++ b/Tests/VSResource/CMakeLists.txt @@ -1,4 +1,7 @@ cmake_minimum_required (VERSION 2.6) project (VSResource) add_definitions(/DCMAKE_RCDEFINE="test.txt") +string(REPLACE "/INCREMENTAL:YES" "" + CMAKE_EXE_LINKER_FLAGS_DEBUG + "${CMAKE_EXE_LINKER_FLAGS_DEBUG}") add_executable(VSResource main.cpp test.rc)