aboutsummaryrefslogtreecommitdiffstats
path: root/tools/msbuild/CMakeLists.txt
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2013-08-28 01:19:26 +0000
committerHans Wennborg <hans@hanshq.net>2013-08-28 01:19:26 +0000
commit110b5209d92f224050f2755539bda8f1d801f94b (patch)
tree1abf79efaf3ce8f49140abf72c11c48b7a21c0e1 /tools/msbuild/CMakeLists.txt
parent7f9a887d3f64d1227b911c9180767d95dbba4c10 (diff)
downloadexternal_llvm-110b5209d92f224050f2755539bda8f1d801f94b.zip
external_llvm-110b5209d92f224050f2755539bda8f1d801f94b.tar.gz
external_llvm-110b5209d92f224050f2755539bda8f1d801f94b.tar.bz2
cmake: Add msbuild integration to the install
This adds the msbuild integration files to the install, provides batch scripts for (un)installing it in a convenient way, and hooks up the nsis installer to run those scripts. Differential Revision: http://llvm-reviews.chandlerc.com/D1537 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189434 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/msbuild/CMakeLists.txt')
-rw-r--r--tools/msbuild/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/msbuild/CMakeLists.txt b/tools/msbuild/CMakeLists.txt
new file mode 100644
index 0000000..a1dca8a
--- /dev/null
+++ b/tools/msbuild/CMakeLists.txt
@@ -0,0 +1,10 @@
+if (WIN32)
+ install(DIRECTORY .
+ DESTINATION tools/msbuild
+ FILES_MATCHING
+ PATTERN "*.targets"
+ PATTERN "*.props"
+ PATTERN "*.bat"
+ PATTERN ".svn" EXCLUDE
+ )
+endif()