diff options
author | Brad King <brad.king@kitware.com> | 2006-08-21 20:55:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-21 20:55:03 (GMT) |
commit | bed79f6c6b47b2c0661da67799ec37fce8905c54 (patch) | |
tree | bdf2a3211652d8587c710d14dbb0f323fb40e617 /Tests/SimpleInstall/scripts | |
parent | f1ea7e88dc8322d4344e6b7acde6bf7bcffd7806 (diff) | |
download | CMake-bed79f6c6b47b2c0661da67799ec37fce8905c54.zip CMake-bed79f6c6b47b2c0661da67799ec37fce8905c54.tar.gz CMake-bed79f6c6b47b2c0661da67799ec37fce8905c54.tar.bz2 |
ENH: Implemented INSTALL(DIRECTORY) command and added a test. Re-organized cmFileCommand's implementation of FILE(INSTALL) a bit to help out. This addresses bug#1694 and partially addresses bug#2691.
Diffstat (limited to 'Tests/SimpleInstall/scripts')
-rw-r--r-- | Tests/SimpleInstall/scripts/.gitattributes | 1 | ||||
-rwxr-xr-x | Tests/SimpleInstall/scripts/sample_script | 2 | ||||
-rwxr-xr-x | Tests/SimpleInstall/scripts/sample_script.bat | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/Tests/SimpleInstall/scripts/.gitattributes b/Tests/SimpleInstall/scripts/.gitattributes new file mode 100644 index 0000000..5e3db2f --- /dev/null +++ b/Tests/SimpleInstall/scripts/.gitattributes @@ -0,0 +1 @@ +sample_script crlf=input diff --git a/Tests/SimpleInstall/scripts/sample_script b/Tests/SimpleInstall/scripts/sample_script new file mode 100755 index 0000000..81f9f53 --- /dev/null +++ b/Tests/SimpleInstall/scripts/sample_script @@ -0,0 +1,2 @@ +#!/bin/sh +echo "Sample Script Output" diff --git a/Tests/SimpleInstall/scripts/sample_script.bat b/Tests/SimpleInstall/scripts/sample_script.bat new file mode 100755 index 0000000..64a77b5 --- /dev/null +++ b/Tests/SimpleInstall/scripts/sample_script.bat @@ -0,0 +1 @@ +@echo Sample Script Output
|