summaryrefslogtreecommitdiff
path: root/src/dlls/mscorrc/full
diff options
context:
space:
mode:
Diffstat (limited to 'src/dlls/mscorrc/full')
-rw-r--r--src/dlls/mscorrc/full/.gitmirror1
-rw-r--r--src/dlls/mscorrc/full/CMakeLists.txt19
-rw-r--r--src/dlls/mscorrc/full/mscorrc.nativeproj25
3 files changed, 45 insertions, 0 deletions
diff --git a/src/dlls/mscorrc/full/.gitmirror b/src/dlls/mscorrc/full/.gitmirror
new file mode 100644
index 0000000000..f507630f94
--- /dev/null
+++ b/src/dlls/mscorrc/full/.gitmirror
@@ -0,0 +1 @@
+Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. \ No newline at end of file
diff --git a/src/dlls/mscorrc/full/CMakeLists.txt b/src/dlls/mscorrc/full/CMakeLists.txt
new file mode 100644
index 0000000000..30d93385ec
--- /dev/null
+++ b/src/dlls/mscorrc/full/CMakeLists.txt
@@ -0,0 +1,19 @@
+add_definitions(-DFX_VER_INTERNALNAME_STR=mscorrc.debug.dll)
+
+if(WIN32)
+
+ add_library_clr(mscorrc.debug SHARED
+ ../include.rc
+ )
+
+ install_clr (mscorrc.debug)
+
+else()
+ build_resources(${CMAKE_CURRENT_SOURCE_DIR}/../include.rc mscorrc_debug TARGET_CPP_FILE)
+
+ add_library_clr(mscorrc_debug STATIC
+ ${TARGET_CPP_FILE}
+ )
+
+endif(WIN32)
+
diff --git a/src/dlls/mscorrc/full/mscorrc.nativeproj b/src/dlls/mscorrc/full/mscorrc.nativeproj
new file mode 100644
index 0000000000..66262603c5
--- /dev/null
+++ b/src/dlls/mscorrc/full/mscorrc.nativeproj
@@ -0,0 +1,25 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="dogfood">
+
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.props" />
+
+ <PropertyGroup>
+ <BuildCoreBinaries>true</BuildCoreBinaries>
+ <BuildSysBinaries>true</BuildSysBinaries>
+ <OutputName Condition="'$(FeatureCoreclr)'=='true'">mscorrc.debug</OutputName>
+ <OutputName Condition="'$(FeatureCoreclr)'!='true'">mscorrc</OutputName>
+ <TargetType>DYNLINK</TargetType>
+ <LinkSubsystem>windows</LinkSubsystem>
+ <LinkResourceOnlyDll>true</LinkResourceOnlyDll>
+ <IsProjectKLibrary>true</IsProjectKLibrary>
+ <IsTestNetCoreRuntimeLibrary>true</IsTestNetCoreRuntimeLibrary>
+ <IsPhoneLibrary>true</IsPhoneLibrary>
+ <IsDesktopTool>true</IsDesktopTool>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <RCResourceFile Include="..\include.rc" />
+ </ItemGroup>
+
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.targets" />
+
+</Project>