summaryrefslogtreecommitdiff
path: root/src/vm/crossgen
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-04-30 11:16:51 -0700
committerJan Vorlicek <janvorli@microsoft.com>2015-04-30 11:16:51 -0700
commit4c724fa7eb813a93d987a2e8874c5dadb9cbffc3 (patch)
tree14c9115c2ad58b10540f8b054875c87553406293 /src/vm/crossgen
parent651789a4a70c46f589109adab17e211d20719e66 (diff)
parentcd795752b356b2d70f5bb204e90453b242b9fc79 (diff)
downloadcoreclr-4c724fa7eb813a93d987a2e8874c5dadb9cbffc3.tar.gz
coreclr-4c724fa7eb813a93d987a2e8874c5dadb9cbffc3.tar.bz2
coreclr-4c724fa7eb813a93d987a2e8874c5dadb9cbffc3.zip
Merge pull request #887 from janvorli/windows-readytorun
Enable ReadyToRun for Windows CoreCLR
Diffstat (limited to 'src/vm/crossgen')
-rw-r--r--src/vm/crossgen/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vm/crossgen/CMakeLists.txt b/src/vm/crossgen/CMakeLists.txt
index 5f0b230f65..afb7f7414b 100644
--- a/src/vm/crossgen/CMakeLists.txt
+++ b/src/vm/crossgen/CMakeLists.txt
@@ -101,6 +101,12 @@ set(VM_CROSSGEN_SOURCES
../crossgencompile.cpp
)
+if (WIN32)
+ list(APPEND VM_CROSSGEN_SOURCES
+ ../readytoruninfo.cpp
+ )
+endif (WIN32)
+
include_directories(BEFORE ..)
include_directories(${CLR_DIR}/src/gc)
include_directories(../amd64)