summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Fix dylib versioning flags for old OSX.Brad King2008-07-091-2/+2
| | | | | | - ld flags -dylib_compatibility_version and -dylib_current_version are libtool flags -compatibility_version and -current_version - OSX 10.3 does not like the dylib_ prefixes.
* ENH: One more patch from Doug Gregor including PackageMaker functionality ↵David Cole2008-07-092-22/+42
| | | | for componentized-for-the-end-user and download-some-bit-on-demand installers.
* ENH: Set version info for shared libs on OSX.Brad King2008-07-091-0/+5
| | | | | | - Map SOVERSION major.minor.patch to compatibility_version - Map VERSION major.minor.patch to current_version - See issue #4383.
* ENH: Further refinement of the CPack components functionality from Doug Gregor.David Cole2008-07-082-5/+684
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Details: ========== - New cpack_add_component, cpack_add_component_group, and cpack_add_install_type "commands" defined as macros in the CPack module. - Documentation for all of the variables and commands in the CPack module. - Added get_cmake_property(... COMPONENTS) to CMake to ask for the names of all components. Used in the CPack module to automatically build component-based installers. (Set CPACK_MONOLITHIC_INSTALL to turn off component-based installation). - A group can declare its PARENT_GROUP, to build an arbitrary hierarchy of groups. - New CPack command cpack_configure_downloads, which creates an installer that downloads only the selected components on-the-fly. Those components marked DOWNLOADED will be separate packages downloaded on-the-fly (or, all packages can be marked as such with the ALL option to cpack_configure_downloads). Individual components are compressed with ZIP at installer-creation time and downloaded/uncompressed by the installer as needed. This feature is only available on Windows with NSIS at the moment. - NSIS installers can install themselves and enable the "Change" button in Add/Remove programs, allowing users to go back and install or remove components. This can be disabled through cpack_configure_downloads, because it's only really useful is most of the application's functionality is in downloaded components. - Bug fix: automatically install everything whose COMPONENT was not specified (it's a hidden, required group) - Bug fix: fixed removal of components when re-running the NSIS installer and unchecking components - Bug fix: NSIS installers now only install/remove the minimal number of files when re-run to update the installation (or by clicking "Change" in Add/Remove programs)
* BUG: Add new library richtext. Reported in #7284 thanks to earith.Miguel A. Figueroa-Villanueva2008-07-061-2/+3
|
* BUG: Watch for empty qconfig.pri files. Fixes #7287.Clinton Stimpson2008-07-051-3/+3
|
* COMP: Find Boost as installed by the BoostPro/Boost Consulting installers on ↵Douglas Gregor2008-07-031-2/+6
| | | | Windows
* ENH: Cleanup FindBoost module, fixing several small bugs and providing ↵Douglas Gregor2008-07-031-155/+203
| | | | better diagnostic information when things go wrong
* BUG: fix 7230: don't ignore first parameter if it's not ALLAlexander Neundorf2008-06-291-1/+1
| | | | Alex
* BUG: don't run KDE4_KDECONFIG_EXECUTABLE if it is notfoundBill Hoffman2008-06-261-4/+7
|
* ENH: undo optional because we need itBill Hoffman2008-06-241-3/+0
|
* ENH: rc is not so optional at least with 2005 and newer, as it is used to ↵Bill Hoffman2008-06-241-1/+1
| | | | embed the manifest files
* ENH: make rc optionalBill Hoffman2008-06-231-1/+4
|
* BUG: modify the compiler flags only if KDE3 has actually been foundAlexander Neundorf2008-06-181-41/+45
| | | | Alex
* STYLE: use uppercase to be consistent with the rest of the fileAlexander Neundorf2008-06-181-8/+8
| | | | Alex
* BUG: the variable is _KDE4_USE_FLAGSAlexander Neundorf2008-06-181-5/+6
| | | | | | ENH: I guess this is also true for gcc 2.95 ? Alex
* ENH: use correct variableBill Hoffman2008-06-181-6/+6
|
* ENH: Apply patch for feature request #7170. Thanks to Tim Shead for ↵David Cole2008-06-181-1/+3
| | | | contributing...
* ENH: fix for findallBill Hoffman2008-06-181-6/+16
|
* ENH: try to module run testBill Hoffman2008-06-181-2/+2
|
* ENH: try to module run testBill Hoffman2008-06-182-8/+15
|
* BUG: Workaround PackageMaker 3.0 issue for new CPack components feature. ↵David Cole2008-06-181-0/+3
| | | | Thanks again to Doug Gregor for the patch.
* ENH: no fatal error if not requiredBill Hoffman2008-06-181-2/+6
|
* ENH: Added support for MSYS as a unix style search.Miguel A. Figueroa-Villanueva2008-06-171-5/+5
|
* ENH: make find blas work if there is no fortran compilerBill Hoffman2008-06-171-1/+4
|
* ENH: Add patch for feature request #6847 - CPack components for NSIS and ↵David Cole2008-06-173-51/+189
| | | | PackageMaker installers. Thanks to Doug Gregor for all the hard work involved with implementing this patch! Also added new test CPackComponents that is conditionally executed only when NSIS or PackageMaker installer builders are available.
* STYLE: fix indent for fileBill Hoffman2008-06-171-338/+338
|
* BUG: don't fail with FATAL_ERROR if REQUIRED was not usedAlexander Neundorf2008-06-161-1/+2
| | | | Alex
* ENH: fix find module stuff for testBill Hoffman2008-06-163-16/+23
|
* BUG: Fix so that MinGW use win32_find_style (6478). Also, consolidated ↵Miguel A. Figueroa-Villanueva2008-06-161-20/+17
| | | | search styles selection into a single variable, so that they are mutually exclusive.
* BUG: Fixed incorrectly matched FOREACH (7008).Miguel A. Figueroa-Villanueva2008-06-131-1/+1
|
* ENH: Cleanup Find* modules with new HINTS featureBrad King2008-06-0939-531/+132
| | | | | | | | | | - The find_* commands now provide a HINTS option. - The option specifies paths to be preferred over the system paths. - Many Find* modules were using two find calls with NO_DEFAULT_PATH to approximate the behavior, but that blocked users from overriding things with CMAKE_PREFIX_PATH. - This commit uses the HINTS feature to get desired behavior in only one find command call.
* STYLE: apply patch from Thomas Klausner (NetBSD): use "=" for testingAlexander Neundorf2008-06-091-3/+3
| | | | | | | | | strings for equality instead of "==" This also matches what the man page for test says "s1 = s2 True if the strings s1 and s2 are identical." Alex
* BUG: Fix for #7118.Clinton Stimpson2008-06-061-0/+1
| | | | | Relative paths going outside the current source dir resulted in badly placed moc source files in the build dir (or out of the build dir).
* ENH: Some Linux distros don't install xorg-devel, png-devel, etc... whenClinton Stimpson2008-06-031-14/+49
| | | | | qt4-devel is installed. Finding them was required to support building against static Qt. Changing it so they are ignored if not found.
* BUG: fixed Lua50 to be Lua51 in FIND_PACKAGE_HANDLE_STANDARD_ARGS call.Eric Wing2008-06-021-1/+1
|
* ENH: Find debug libs from static Qt on Windows.Clinton Stimpson2008-05-261-18/+18
|
* ENH: use PATHS keywordBill Hoffman2008-05-231-0/+1
|
* ENH: Extend previous patch from Mathieu Malaterre to apply override to the ↵Brad King2008-05-211-2/+2
| | | | build tool also.
* ENH: Make Qt not found if the QtCore library can't be found.Clinton Stimpson2008-05-211-3/+17
| | | | Also report an error when trying to use MSVC with Qt built by mingw.
* ENH: Similar to how qmake does it...Clinton Stimpson2008-05-191-4/+4
| | | | | | Don't add compile flags for dependent modules the user didn't specify. But still add the link libs. This reduces the number of unecessary compile flags.
* BUG: Fixes for FindSubversionBrad King2008-05-191-10/+19
| | | | | | | | | - Split log out from Subversion_WC_INFO into Subversion_WC_LOG - Fix report of log info to be in <var-prefix>_WC_LAST_CHANGED_LOG as documented (instead of Subversion_LAST_CHANGED_LOG) - Fix setting of LC_ALL environment variable to be inside macro - Patch from Tanguy Krotoff - See issue #7047
* ENH: Add basic flags for Portland Group fortran compiler.Brad King2008-05-171-0/+8
|
* ENH: Allow users to specify a custom Info.plist templateBrad King2008-05-171-0/+36
| | | | | | - Create MACOSX_BUNDLE_INFO_PLIST target property to specify template. - Look for MacOSXBundleInfo.plist.in in CMAKE_MODULE_PATH by default. - See issue #6983.
* ENH: Add Linux-PGI-Fortran platform file to support the Portland Group ↵Brad King2008-05-161-0/+1
| | | | Fortran compiler (PGI).
* ENH: Teach Fortran compiler identification about the Portland Group compiler ↵Brad King2008-05-161-0/+2
| | | | (PGI).
* BUG: make the toolchain-prefix recognition work with prefixes which containAlexander Neundorf2008-05-153-18/+27
| | | | | | | dots (as in arm-unknown-nto-qnx6.3.0-gcc.exe), NAME_WE returns only up to the 6, instead of everything in front of the .exe Alex
* BUG: if CPACK_NSIS_MODIFY_PATH was OFF then the PATH was automatically modifiedBill Hoffman2008-05-131-1/+2
|
* STYLE: use IF(NOT ...) instead of IF() ELSE() ... ENDIF()Alexander Neundorf2008-05-121-3/+2
| | | | Alex
* BUG: fix #6375: print the variables which were not found, so it's easier toAlexander Neundorf2008-05-111-2/+7
| | | | | | see what went wrong Alex