diff options
author | Rahul Kumar <rahku@microsoft.com> | 2015-02-08 22:04:06 -0800 |
---|---|---|
committer | Rahul Kumar <rahku@microsoft.com> | 2015-02-08 22:04:06 -0800 |
commit | e092ea19d2fba739f4b1efa5ab204b6ee724c7f8 (patch) | |
tree | d7343438c0d52963df401230b3f5c7bf68ad3e08 /src/md/enc | |
parent | 4cca1a4b23d0dd7c18c30eff378cea759a8f1a9e (diff) | |
download | coreclr-e092ea19d2fba739f4b1efa5ab204b6ee724c7f8.tar.gz coreclr-e092ea19d2fba739f4b1efa5ab204b6ee724c7f8.tar.bz2 coreclr-e092ea19d2fba739f4b1efa5ab204b6ee724c7f8.zip |
precompile common headers to reduce build time for win builds. With this build time on my machine has reduced from 19mins to 10mins.
[tfs-changeset: 1412352]
Diffstat (limited to 'src/md/enc')
-rw-r--r-- | src/md/enc/dac/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/md/enc/dbi/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/md/enc/wks/CMakeLists.txt | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/md/enc/dac/CMakeLists.txt b/src/md/enc/dac/CMakeLists.txt index b651fc28ac..90f7e786b6 100644 --- a/src/md/enc/dac/CMakeLists.txt +++ b/src/md/enc/dac/CMakeLists.txt @@ -2,4 +2,5 @@ include(${CLR_DIR}/dac.cmake) include(../../md_dac.cmake) +add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) add_library(mdruntimerw_dac ${MDRUNTIMERW_SOURCES}) diff --git a/src/md/enc/dbi/CMakeLists.txt b/src/md/enc/dbi/CMakeLists.txt index 7898bfafdd..6cd97dd5bd 100644 --- a/src/md/enc/dbi/CMakeLists.txt +++ b/src/md/enc/dbi/CMakeLists.txt @@ -1,2 +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 diff --git a/src/md/enc/wks/CMakeLists.txt b/src/md/enc/wks/CMakeLists.txt index e31d8ec056..5b596ed7fa 100644 --- a/src/md/enc/wks/CMakeLists.txt +++ b/src/md/enc/wks/CMakeLists.txt @@ -1,2 +1,4 @@ include(../../md_wks.cmake) + +add_precompiled_header(stdafx.h ../stdafx.cpp MDRUNTIMERW_SOURCES) add_library(mdruntimerw_wks ${MDRUNTIMERW_SOURCES}) |