summaryrefslogtreecommitdiff
path: root/src/utilcode/dac
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2015-01-30 14:14:42 -0800
committerdotnet-bot <dotnet-bot@microsoft.com>2015-01-30 14:14:42 -0800
commitef1e2ab328087c61a6878c1e84f4fc5d710aebce (patch)
treedee1bbb89e9d722e16b0d1485e3cdd1b6c8e2cfa /src/utilcode/dac
downloadcoreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.tar.gz
coreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.tar.bz2
coreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.zip
Initial commit to populate CoreCLR repo
[tfs-changeset: 1407945]
Diffstat (limited to 'src/utilcode/dac')
-rw-r--r--src/utilcode/dac/.gitmirror1
-rw-r--r--src/utilcode/dac/CMakeLists.txt10
-rw-r--r--src/utilcode/dac/dirs.proj18
3 files changed, 29 insertions, 0 deletions
diff --git a/src/utilcode/dac/.gitmirror b/src/utilcode/dac/.gitmirror
new file mode 100644
index 0000000000..f507630f94
--- /dev/null
+++ b/src/utilcode/dac/.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/utilcode/dac/CMakeLists.txt b/src/utilcode/dac/CMakeLists.txt
new file mode 100644
index 0000000000..d792c4ca57
--- /dev/null
+++ b/src/utilcode/dac/CMakeLists.txt
@@ -0,0 +1,10 @@
+
+include(${CLR_DIR}/dac.cmake)
+
+if(CLR_CMAKE_PLATFORM_UNIX)
+ add_library(utilcode_dac STATIC ${UTILCODE_SOURCES})
+ add_dependencies(utilcode_dac CoreClrPal)
+else(CLR_CMAKE_PLATFORM_UNIX)
+ add_definitions(-DSELF_NO_HOST)
+ add_library(utilcode_dac STATIC ${UTILCODE_SOURCES} ../hostimpl.cpp)
+endif(CLR_CMAKE_PLATFORM_UNIX) \ No newline at end of file
diff --git a/src/utilcode/dac/dirs.proj b/src/utilcode/dac/dirs.proj
new file mode 100644
index 0000000000..5556c8634c
--- /dev/null
+++ b/src/utilcode/dac/dirs.proj
@@ -0,0 +1,18 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <!--Import the settings-->
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.props" />
+
+ <PropertyGroup>
+ <BuildInPhase1>true</BuildInPhase1>
+ <BuildInPhaseDefault>false</BuildInPhaseDefault>
+ <BuildCoreBinaries>true</BuildCoreBinaries>
+ <BuildSysBinaries>true</BuildSysBinaries>
+ </PropertyGroup>
+
+ <!--The following projects will build during PHASE 1-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '1'">
+ <ProjectFile Include="HostLocal\dac.nativeproj" />
+ </ItemGroup>
+
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\tools\Microsoft.DevDiv.Traversal.targets" />
+</Project>