diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2016-01-19 19:24:23 +0100 |
---|---|---|
committer | Rama Krishnan Raghupathy <ramarag@microsoft.com> | 2016-01-21 14:39:01 -0800 |
commit | 2c25d6ca44e3129ace57f6383260a42023a6d646 (patch) | |
tree | a6132b98d4c43b788eb8bdf34794e97d84bd724a /src/md/enc | |
parent | aae412433d6235b0a1c5f8f0301b2cc066857cc6 (diff) | |
download | coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.gz coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.bz2 coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.zip |
FIx the incremental build for Windows
Conflicts:
build.cmd
src/dlls/clretwrc/CMakeLists.txt
Cleanup
Diffstat (limited to 'src/md/enc')
-rw-r--r-- | src/md/enc/crossgen/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/md/enc/dac/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/md/enc/dbi/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/md/enc/wks/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/md/enc/crossgen/CMakeLists.txt b/src/md/enc/crossgen/CMakeLists.txt index d619c5c3f7..f01451a337 100644 --- a/src/md/enc/crossgen/CMakeLists.txt +++ b/src/md/enc/crossgen/CMakeLists.txt @@ -2,4 +2,4 @@ include(${CLR_DIR}/crossgen.cmake) include(../../md_wks.cmake) add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) -add_library(mdruntimerw_crossgen ${MDRUNTIMERW_SOURCES}) +add_library_clr(mdruntimerw_crossgen ${MDRUNTIMERW_SOURCES}) diff --git a/src/md/enc/dac/CMakeLists.txt b/src/md/enc/dac/CMakeLists.txt index 90f7e786b6..9bef4636f7 100644 --- a/src/md/enc/dac/CMakeLists.txt +++ b/src/md/enc/dac/CMakeLists.txt @@ -3,4 +3,4 @@ include(${CLR_DIR}/dac.cmake) include(../../md_dac.cmake) add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) -add_library(mdruntimerw_dac ${MDRUNTIMERW_SOURCES}) +add_library_clr(mdruntimerw_dac ${MDRUNTIMERW_SOURCES}) diff --git a/src/md/enc/dbi/CMakeLists.txt b/src/md/enc/dbi/CMakeLists.txt index 6cd97dd5bd..5be16bc28c 100644 --- a/src/md/enc/dbi/CMakeLists.txt +++ b/src/md/enc/dbi/CMakeLists.txt @@ -1,4 +1,4 @@ include(../../md_dbi.cmake) add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) -add_library(mdruntimerw-dbi ${MDRUNTIMERW_SOURCES})
\ No newline at end of file +add_library_clr(mdruntimerw-dbi ${MDRUNTIMERW_SOURCES})
\ No newline at end of file diff --git a/src/md/enc/wks/CMakeLists.txt b/src/md/enc/wks/CMakeLists.txt index 5b596ed7fa..df7664187d 100644 --- a/src/md/enc/wks/CMakeLists.txt +++ b/src/md/enc/wks/CMakeLists.txt @@ -1,4 +1,4 @@ include(../../md_wks.cmake) add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) -add_library(mdruntimerw_wks ${MDRUNTIMERW_SOURCES}) +add_library_clr(mdruntimerw_wks ${MDRUNTIMERW_SOURCES}) |