summaryrefslogtreecommitdiffstats
path: root/Source/CPack
Commit message (Collapse)AuthorAgeFilesLines
* ENH: fix crash in cpack when CPACK_CYGWIN_PATCH_NUMBER not specifiedBill Hoffman2008-03-133-4/+26
|
* ENH: fix crash in cygwin package stuffBill Hoffman2008-03-072-8/+43
|
* ENH: install working with symlink qt toolBill Hoffman2008-02-192-8/+63
|
* ENH: have cpack work with DESTDIR install and ingest qt framework libs into ↵Bill Hoffman2008-02-181-1/+1
| | | | cmake-gui
* ENH: fix DESTDIR installBill Hoffman2008-02-161-3/+2
|
* BUG: fix for bug 6294, correct url for nsisBill Hoffman2008-02-151-1/+1
|
* COMP: Add include of <limits.h> to get USHRT_MAX constant.Brad King2008-01-241-0/+2
|
* ENH: try to fix dashboardBill Hoffman2007-12-171-1/+17
|
* BUG: fix for 6086 uninstall icon not set rightBill Hoffman2007-12-141-1/+1
|
* ENH: Centralized and globalized computation of CMake program locations. ↵Brad King2007-12-131-1/+2
| | | | This eliminates startup paths that failed to produce this information.
* ENH: change CPACK_CREATE_DESKTOP_LINKS to something that can handle spaces ↵Bill Hoffman2007-11-071-4/+30
| | | | in the name of the exectuable
* ENH: changne ProcessGenertor to DoPackageBill Hoffman2007-11-063-3/+3
|
* STYLE: fix line length issueBill Hoffman2007-11-061-1/+2
|
* ENH: change nameBill Hoffman2007-11-0512-71/+71
|
* ENH: change name of classBill Hoffman2007-11-053-17/+17
|
* COMP: Fix warnings on 64-bit Mac OS X build. Patch from issue #3697.Brad King2007-11-054-10/+10
|
* ENH: add CPACK_PROJECT_CONFIG_FILE option to CPackBill Hoffman2007-10-311-1/+9
|
* ENH: fix line lengthBill Hoffman2007-10-311-1/+2
|
* ENH: Add CPACK_SET_DESTDIR handling to enable packaging of installed files ↵David Cole2007-10-3114-43/+127
| | | | in absolute locations. With this setting on, cpack will set the DESTDIR env var when building the package so that files end up in their intended locations. Default behavior is not to set DESTDIR for backwards compatibility. Helps address issue #4993 and issue #5257. Also, remove unused CPACK_USE_DESTDIR variable. ENH: Add variable CPACK_PACKAGING_INSTALL_PREFIX to allow overriding the CPack GetPackagingInstallPrefix from a project's CMakeLists file if necessary. Could be used to remove the annoying /usr prefix still used by default in the Mac PackageMaker generator.
* ENH: cpack changes, remove the escape variable stuff as it is not needed if ↵Bill Hoffman2007-10-312-26/+20
| | | | you provide a config file for cpack
* ENH: add ability to set installer icons, links to web pages, nsis code in ↵Bill Hoffman2007-10-291-6/+25
| | | | the icon section of the template, and ability to escape variables correctly
* BUG: rename DEBIAN_PACKAGE_* variables to CPACK_DEBIAN_PACKAGE_* variablesAlexander Neundorf2007-10-251-11/+17
| | | | | | to make them actually work Alex
* ENH: change to make the documentation class more generic, about halfway ↵Ken Martin2007-10-221-15/+13
| | | | there, also provides secitons for Variables now
* ENH: fix line length errorBill Hoffman2007-10-191-3/+4
|
* ENH: add ability to create links on the start menuBill Hoffman2007-10-182-0/+57
|
* BUG: revert doc changes since VS7 cannot compile them, will implement them ↵Ken Martin2007-10-091-14/+14
| | | | in a different manner
* ENH: make documentation entries actually store their dataKen Martin2007-10-091-14/+14
|
* COMP: remove warningsBill Hoffman2007-09-271-2/+3
|
* STYLE: use %-10lld instead of %-10qd for printing a 64bit int, maybe thisAlexander Neundorf2007-09-211-2/+2
| | | | | | silences the warning of the HP compiler Alex
* ENH: allow for desktop link to be created and fix chop of last char in PATH ↵Bill Hoffman2007-09-181-0/+14
| | | | on uninstall
* BUG: Another space-in-path fix.Brad King2007-08-311-2/+4
|
* BUG: work if there are spaces in the path to cmakeAlexander Neundorf2007-08-291-4/+6
| | | | Alex
* STYLE: InitializeInternal() is unusedAlexander Neundorf2007-08-172-8/+1
| | | | Alex
* ENH: patch from Eric Noulard for an RPM package generatorAlexander Neundorf2007-08-172-6/+25
| | | | | | | | It seems rpmbuild can't handle paths with spaces, it complains that Buildroot takes only one tag (or something like this), quoting and escaping don't seem to help. Alex
* COMP: fix warning about comparison signed - unsignedAlexander Neundorf2007-08-151-1/+2
| | | | Alex
* COMP: fix build on HPUX, snprintf apparently doesn't work thereAlexander Neundorf2007-08-151-7/+6
| | | | Alex
* STYLE: another patch from Mathieu with some commentsAlexander Neundorf2007-08-141-2/+6
| | | | Alex
* ENH: deb generator: don't use the system provided ar, but do it yourselfAlexander Neundorf2007-08-142-25/+252
| | | | | | | using the code from OpenBSD ar COMP: don't build all package generators on all platforms Alex
* COMP: silence warningsAlexander Neundorf2007-08-081-1/+4
| | | | Alex
* BUG: register the rpm generator for RPMAlexander Neundorf2007-08-081-1/+1
| | | | Alex
* ENH: patch from Mathieu: more entries in the debian control fileAlexander Neundorf2007-08-081-4/+24
| | | | Alex
* ENH: add empty RPM package generator, Eric Noulard wants to work on itAlexander Neundorf2007-08-083-0/+109
| | | | Alex
* ENH: another fix for the deb generator by MathieuAlexander Neundorf2007-08-061-2/+17
| | | | Alex
* BUG: patch from Mathieu: the md5sums were not correctAlexander Neundorf2007-08-061-0/+7
| | | | Alex
* ENH: better error messages from the debian package generatorAlexander Neundorf2007-08-032-5/+11
| | | | | | | -don't display the cpack help if a generator failed with some problem -check for cmSystemTools::GetErrorOccuredFlag() Alex
* ENH: use gnu tar for cygwinBill Hoffman2007-07-312-7/+21
|
* STYLE: fix line lengthAlexander Neundorf2007-07-271-1/+2
| | | | Alex
* STYLE: fix some kwstyle errorsBill Hoffman2007-07-275-6/+36
|
* ENH: deb generator can now generate deb packagesAlexander Neundorf2007-07-272-21/+20
| | | | | | | | | | -remove the unscriptable commands also from the cpack cmake -use CPACK_PACKAGE_CONTACT in CMakeCPack.cmake, it's used in the nsis and the deb generator -make set_properties() scriptable -use a non-const char array for adding the python modules Alex
* STYLE: fix line lengthsAlexander Neundorf2007-07-263-4/+8
| | | | Alex