diff options
author | Brad King <brad.king@kitware.com> | 2003-01-24 22:40:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-01-24 22:40:17 (GMT) |
commit | 1048560af65c80dd7d3f5e9cce302c44340d5c97 (patch) | |
tree | a859d01e987ae9afe73f25fbecbf0f8ff4007870 /Utilities/Release/cygwin-package.sh.in | |
parent | f65dfd7b47b5bf7c226f14c91b36291adb67998d (diff) | |
download | CMake-1048560af65c80dd7d3f5e9cce302c44340d5c97.zip CMake-1048560af65c80dd7d3f5e9cce302c44340d5c97.tar.gz CMake-1048560af65c80dd7d3f5e9cce302c44340d5c97.tar.bz2 |
ENH: Merged more changes from 1.6 branch.
Diffstat (limited to 'Utilities/Release/cygwin-package.sh.in')
-rwxr-xr-x | Utilities/Release/cygwin-package.sh.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Utilities/Release/cygwin-package.sh.in b/Utilities/Release/cygwin-package.sh.in index 23ff392..e98795b 100755 --- a/Utilities/Release/cygwin-package.sh.in +++ b/Utilities/Release/cygwin-package.sh.in @@ -39,6 +39,11 @@ conf() { ( cd ${BINARY_DIR} && + ( + cat >CMakeCache.txt <<EOF +BUILD_TESTING:BOOL=ON +EOF + ) && ${SOURCE_DIR}/configure --prefix=${PREFIX} ) } @@ -47,7 +52,8 @@ build() { ( cd ${BINARY_DIR} && - make + make && + ./Source/ctest ) } |