From: Mike McLaughlin Date: Thu, 2 Jul 2015 02:02:25 +0000 (-0700) Subject: Fix Windows build. X-Git-Tag: accepted/tizen/base/20180629.140029~6588^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=09e4d779704b9d93e602ab1d602998222ec9a19e;p=platform%2Fupstream%2Fcoreclr.git Fix Windows build. --- diff --git a/src/debug/daccess/CMakeLists.txt b/src/debug/daccess/CMakeLists.txt index 65365d1..c84fe62 100644 --- a/src/debug/daccess/CMakeLists.txt +++ b/src/debug/daccess/CMakeLists.txt @@ -56,4 +56,6 @@ add_precompiled_header(stdafx.h stdafx.cpp DACCESS_SOURCES) add_library(daccess ${DACCESS_SOURCES}) -add_dependencies(daccess coreclr) +if(CLR_CMAKE_PLATFORM_UNIX) + add_dependencies(daccess coreclr) +endif(CLR_CMAKE_PLATFORM_UNIX)