summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2015-07-01 19:02:25 -0700
committerMike McLaughlin <mikem@microsoft.com>2015-07-01 19:02:25 -0700
commit09e4d779704b9d93e602ab1d602998222ec9a19e (patch)
treed480ca24a82ab25f550983f95c4bd76be3a95cf8
parente2010fd083f4c4cb85a2b43c5b7d3c543cb32a20 (diff)
downloadcoreclr-09e4d779704b9d93e602ab1d602998222ec9a19e.tar.gz
coreclr-09e4d779704b9d93e602ab1d602998222ec9a19e.tar.bz2
coreclr-09e4d779704b9d93e602ab1d602998222ec9a19e.zip
Fix Windows build.
-rw-r--r--src/debug/daccess/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/debug/daccess/CMakeLists.txt b/src/debug/daccess/CMakeLists.txt
index 65365d18aa..c84fe625b9 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)