diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-08-28 01:19:26 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-08-28 01:19:26 +0000 |
commit | 110b5209d92f224050f2755539bda8f1d801f94b (patch) | |
tree | 1abf79efaf3ce8f49140abf72c11c48b7a21c0e1 /tools/msbuild/CMakeLists.txt | |
parent | 7f9a887d3f64d1227b911c9180767d95dbba4c10 (diff) | |
download | external_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.txt | 10 |
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() |