summaryrefslogtreecommitdiff
path: root/src/vm/crossgen
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-04-30 10:22:42 -0700
committerJan Vorlicek <janvorli@microsoft.com>2015-04-30 10:25:44 -0700
commitcd795752b356b2d70f5bb204e90453b242b9fc79 (patch)
tree47ae0d47a70032366b00b720c8378bd278532f7c /src/vm/crossgen
parent05e2aa8577806dba3ee794555e2964be4504cd2d (diff)
downloadcoreclr-cd795752b356b2d70f5bb204e90453b242b9fc79.tar.gz
coreclr-cd795752b356b2d70f5bb204e90453b242b9fc79.tar.bz2
coreclr-cd795752b356b2d70f5bb204e90453b242b9fc79.zip
Enable ReadyToRun for Windows CoreCLR
This change enables the FEATURE_READYTORUN for CoreCLR on Windows.
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 2bf63c424a..fdf7e9597e 100644
--- a/src/vm/crossgen/CMakeLists.txt
+++ b/src/vm/crossgen/CMakeLists.txt
@@ -111,6 +111,12 @@ set(VM_CROSSGEN_SOURCES
../CrossgenRoResolveNamespace.cpp
)
+if (WIN32)
+ list(APPEND VM_CROSSGEN_SOURCES
+ ../readytoruninfo.cpp
+ )
+endif (WIN32)
+
include_directories(BEFORE ..)
include_directories(${CLR_DIR}/src/gc)
include_directories(../amd64)