Fix Windows ARM release build break (#15958)
[platform/upstream/coreclr.git] / crosscomponents.cmake
index 158173e..f68587d 100644 (file)
@@ -1,8 +1,20 @@
 add_definitions(-DCROSS_COMPILE)
 
-set (CLR_CROSS_COMPONENTS_LIST  
-  crossgen   
-  mscordaccore   
-  mscordbi   
-  sos
-)  
+set (CLR_CROSS_COMPONENTS_LIST
+    crossgen   
+    clrjit
+    legacyjit
+)
+
+if(NOT CLR_CMAKE_PLATFORM_LINUX)
+    list (APPEND CLR_CROSS_COMPONENTS_LIST
+        mcs
+        mscordaccore
+        mscordbi
+        sos
+        superpmi
+        superpmi-shim-collector
+        superpmi-shim-counter
+        superpmi-shim-simple
+    )
+endif()