summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: some whitespace syncing with FindQt4.cmake in KDE svnAlexander Neundorf2007-12-161-3/+4
| | | | Alex
* BUG: Need to strip leading and trailing whitespace off the compiler 'ARG1'. ↵Brad King2007-12-151-2/+5
| | | | This fixes bug#6141.
* ENH: Add OPTIONS argument to some Qt4 macros.Clinton Stimpson2007-12-141-11/+28
| | | | Addresses #6125.
* BUG: fix for 6117, fix for second runBill Hoffman2007-12-141-2/+2
|
* BUG: Fix bug 6106 FindPerlLibs.cmake missing escaped $Bill Hoffman2007-12-121-3/+2
|
* ENH: Correctly find UiTools library on Mac w/ binary install of Qt.Clinton Stimpson2007-12-111-0/+4
| | | | Fixes #4554.
* STYLE: Clarified usage documentation for cmake --help-module FindwxWidgets.Miguel A. Figueroa-Villanueva2007-12-021-5/+30
|
* STYLE: Use LIST(APPEND ...) instead of SET(...)Miguel A. Figueroa-Villanueva2007-12-021-18/+7
|
* ENH: Added search entry for the new release: wxWidgets-2.8.7.Miguel A. Figueroa-Villanueva2007-12-021-0/+1
|
* ENH: Added support for selecting different configurations in UNIX_STYLE: ↵Miguel A. Figueroa-Villanueva2007-12-021-3/+103
| | | | debug/release, static/shared, unicode/ansi, and regular/universal.
* ENH: Added macro support for compiling xrc resources to cpp code.Miguel A. Figueroa-Villanueva2007-12-021-0/+77
|
* ENH: Define QT_NO_DEBUG when building with release Qt libs.Clinton Stimpson2007-12-011-0/+11
| | | | Fixes #6104.
* BUG: use the correct variable for checking the success (#6062)Alexander Neundorf2007-11-251-1/+1
| | | | Alex
* ENH: add support for the Syllable OS (http://www.syllable.org)Alexander Neundorf2007-11-241-0/+36
| | | | | | | | | | | major issues: -access() doesn't return false for an empty string (#ifdefed in cmake) -dlopen() doesn't return 0 on failure (#ifdefed in cmake and fixed now in Syllable) -the kwsys and Bootstrap tests fail with timeout due to the fact that I'm doing all that in qemu, which is quite slow -RPATH is now supported, so without modifying the test adapting DLL_PATH in Syllable is required for the tests to succeed -the Plugin test fails with an undefined reference to example_exe_function() in example_mod_1, it seems this isn't supported under Syllable Alex
* ENH: add support for env var and better default for CMAKE_OSX_SYSROOTBill Hoffman2007-11-151-7/+13
|
* ENH: Fix case of windows library names to supportClinton Stimpson2007-11-141-2/+2
| | | | cross compiling w/ Qt on case sensitive platforms.
* BUG: Fix to support arch and isysroot compilation options on MAC (Bug 5007).Miguel A. Figueroa-Villanueva2007-11-121-0/+4
|
* ENH: change nameBill Hoffman2007-11-091-2/+2
|
* ENH: add ability to use your own install directoriesBill Hoffman2007-11-091-6/+12
|
* ENH: fix bug in default arch, it was using the environment variable which is ↵Bill Hoffman2007-11-081-1/+3
| | | | not a default
* BUG: handle qmake returning multiple paths for mkspecs. Fixes #5935Clinton Stimpson2007-11-081-2/+5
|
* ENH: Add support for static Qt 4.3 builds.Clinton Stimpson2007-11-081-2/+26
|
* BUG: Do not us the search_paths_first flag on older Mac OSX (10.2 and ↵David Cole2007-11-081-2/+29
| | | | earlier) systems.
* BUG: Fixed error related to missing quotes around variable.Miguel A. Figueroa-Villanueva2007-11-041-4/+4
|
* ENH: fix for RPM generator from EricBill Hoffman2007-11-011-10/+20
|
* ENH: Add CPACK_SET_DESTDIR handling to enable packaging of installed files ↵David Cole2007-10-311-1/+1
| | | | 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-311-89/+3
| | | | you provide a config file for cpack
* ENH: use cpack generic variable if rpm one is not setBill Hoffman2007-10-301-1/+5
|
* ENH: add ability to set installer icons, links to web pages, nsis code in ↵Bill Hoffman2007-10-292-7/+82
| | | | 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-31/+31
| | | | | | to make them actually work Alex
* ENH: fix bitmap escapesBill Hoffman2007-10-221-3/+9
|
* ENH: fix spelling errorBill Hoffman2007-10-221-2/+1
|
* ENH: allow CPACK_PACKAGE_ICON to be not setBill Hoffman2007-10-222-5/+11
|
* ENH: try to fix boostrap on 10.5Bill Hoffman2007-10-221-1/+2
|
* ENH: do not always add -arch flagsBill Hoffman2007-10-201-0/+1
|
* ENH: add ability to create links on the start menuBill Hoffman2007-10-181-2/+2
|
* ENH: Added support for finding wxWidgets-2.9. Thanks to Joshua Jensen and ↵Miguel A. Figueroa-Villanueva2007-10-171-0/+4
| | | | Steven.
* ENH: minor doc cleanups and an example of documenting a variableKen Martin2007-10-151-1/+1
|
* BUG: Added support for the AUI library module (bug 4338). Also applied someMiguel A. Figueroa-Villanueva2007-10-131-232/+214
| | | | | | STYLE changes including: deprecation of wxWidgets_USE_LIBS in favor of using standard FIND_PACKAGE COMPONENTS, removed some CMake 2.4.2 compatibility patches, use of execute_process instead of exec_program, etc.
* BUG: fix for bug 5878Bill Hoffman2007-10-121-74/+84
|
* ENH: add from bug 0004219Bill Hoffman2007-10-121-0/+268
|
* BUG: fix for bug 0005871Bill Hoffman2007-10-121-1/+1
|
* ENH: FindBLAS.cmake and FindLAPACK.cmake modules added. They locate various ↵Alin Elena2007-10-104-1/+504
| | | | implementations of blas and lapack libraries. CheckFortranFunctionExists.cmake provides a test function to check if the library is usabale. I have also changed the -KPIC flag to -fPIC in Linux-ifort.cmake.
* ENH: add support for preprocessed files in borlandBill Hoffman2007-10-051-0/+4
|
* ENH: set QT_EDITION_DESKTOPLIGHT and do not disable modulesBill Hoffman2007-09-271-13/+4
|
* ENH: look for qt in a beter registry place and disable modules that won't ↵Bill Hoffman2007-09-271-4/+18
| | | | work with DesktopLight, also set QT_EDITION variable
* BUG: Enable CMAKE_HP_PTHREADS only when the old CMA threads are available. ↵Brad King2007-09-241-1/+3
| | | | Modern HP pthreads are just normal pthreads.
* ENH: remove messageBill Hoffman2007-09-211-1/+0
|
* BUG: Do not use CMA threads on HP if they do not exist.Brad King2007-09-201-1/+10
|
* BUG: if Qt is installed as a framework, add -F to the command line soAlexander Neundorf2007-09-191-3/+10
| | | | | | Q_WS_MAC can be detected correctly Alex