summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Implement linking with paths to library files instead of -L and -l ↵Brad King2008-01-225-21/+72
| | | | | | | | | | | | | | | | | separation. See bug #3832 - This is purely an implementation improvement. No interface has changed. - Create cmComputeLinkInformation class - Move and re-implement logic from: cmLocalGenerator::ComputeLinkInformation cmOrderLinkDirectories - Link libraries to targets with their full path (if it is known) - Dirs specified with link_directories command still added with -L - Make link type specific to library names without paths (name libfoo.a without path becomes -Wl,-Bstatic -lfoo) - Make directory ordering specific to a runtime path computation feature (look for conflicting SONAMEs instead of library names) - Implement proper rpath support on HP-UX and AIX.
* ENH: Cleanup chrpath feature by not displaying exe format or placing ↵Brad King2008-01-222-5/+3
| | | | non-advanced options in cache.
* ENH: Generalize the check for sizeof void* to detect more ABI information.Brad King2008-01-218-14/+167
|
* ENH: Implement version support in the find_package command module mode. ↵Brad King2008-01-211-1/+17
| | | | Version numbers provided to the command are converted to variable settings to tell the FindXXX.cmake module what version is requested. This addresses issue #1645.
* BUG: FindX11 module should search for SM library instead of returning -lSM.Brad King2008-01-201-1/+5
|
* ENH: Tcl/Tk 8.6 alpha schedule for May 2008.Sebastien Barre2008-01-193-0/+19
|
* ENH: make sure msvc90 gets setBill Hoffman2008-01-181-0/+1
|
* ENH: remove RAISE_SCOPE() again and instead add SET(<var> <value> PARENT_SCOPE)Alexander Neundorf2008-01-182-10/+10
| | | | Alex
* ENH: make sure MSVC90 is setBill Hoffman2008-01-181-0/+4
|
* ENH: cleanup FindPerl and FindTcl (use ActiveState CurrentVersion, and ↵Sebastien Barre2008-01-183-27/+27
| | | | support Tcl/Tk 8.5)
* ENH: cleanup FindPerl and FindTcl (use ActiveState CurrentVersion, and ↵Sebastien Barre2008-01-182-0/+8
| | | | support Tcl/Tk 8.5)
* ENH: cleanup FindPerl and FindTcl (use ActiveState CurrentVersion, and ↵Sebastien Barre2008-01-183-7/+7
| | | | support Tcl/Tk 8.5)
* ENH: cleanup FindPerl and FindTcl (use ActiveState CurrentVersion, and ↵Sebastien Barre2008-01-184-24/+133
| | | | support Tcl/Tk 8.5)
* ENH: Enable use of COMPILE_DEFINITIONS property for Fortran sources.Brad King2008-01-182-2/+2
|
* ENH: Changed signature of GET_PROPERTY command to be more powerful and ↵Brad King2008-01-173-7/+8
| | | | extendible.
* ENH: Rename SET_PROPERITES command to SET_PROPERTY and give it a more ↵Brad King2008-01-178-11/+10
| | | | powerful signature.
* ENH: Enable CMAKE_<lang>_DEFINE_FLAG for COMPILE_DEFINITIONS property ↵Brad King2008-01-171-1/+1
| | | | implementation.
* BUG: Eliminate message - it pops up an annoying dialog whenever you run ↵David Cole2008-01-161-1/+0
| | | | CMakeSetup in a project with java wrapping turned on.
* ENH: Convert Modules/Platform specification of system search paths to use ↵Brad King2008-01-164-33/+44
| | | | CMAKE_SYSTEM_PREFIX_PATH when possible.
* BUG: Remove references to CMAKE_PREFIX_PATH variable. It should not be ↵Brad King2008-01-1629-345/+62
| | | | referenced directly by FIND_* command calls. The commands search it automatically.
* STYLE: fix infinished commentAlexander Neundorf2008-01-161-1/+2
| | | | Alex
* BUG: fix for bug 6231, bad regex for sunos, worked by chance, but better to ↵Bill Hoffman2008-01-151-2/+2
| | | | have it right
* BUG: according to the binutils mailing list chrpath doesn't work when crossAlexander Neundorf2008-01-151-2/+3
| | | | | | compiling Alex
* BUG: set LC_ALL to C, so message from svn are not translated, which can leadAlexander Neundorf2008-01-141-0/+8
| | | | | | | | to problems (since the output is parsed, which fails then) Brad, Bill, can you think of any reasons this change might create problems ? Alex
* ENH: Create COMPILE_DEFINITIONS property for targets and source files. ↵Brad King2008-01-149-21/+25
| | | | Create <config>_COMPILE_DEFINITIONS property as per-configuration version. Add Preprocess test to test the feature. Document limitations on Xcode and VS6 generators.
* ENH: add support for xlf with -WF,-D for -DBill Hoffman2008-01-112-2/+2
|
* ENH: add support for xlf with -WF,-D for -DBill Hoffman2008-01-113-0/+3
|
* ENH: For moc commands on Windows, use @param_file method to allow argumentsClinton Stimpson2008-01-111-24/+26
| | | | | longer than Windows' command length limitation. Fixes #6221.
* BUG: it seems on some installations boost is installed under boost-1_34 ,Alexander Neundorf2008-01-101-0/+1
| | | | | | | | see #5030 FindBoost.cmake recommends using LINK_DIRECTORIES(), is this really good ? Alex
* BUG: fix for bug 4145 much better findSwigBill Hoffman2008-01-101-40/+48
|
* BUG: Removed stray debugging message.Brad King2008-01-101-1/+0
|
* BUG: Need to install fortran compiler id source.Brad King2008-01-101-0/+1
|
* STYLE: Move VisualAge id macro to correct block.Brad King2008-01-101-1/+3
|
* ENH: add support for visual age fortran on linuxBill Hoffman2008-01-103-1/+6
|
* ENH: Patch from Maik to add preprocessor directive handling to Fortran ↵Brad King2008-01-091-1/+3
| | | | dependency scanning. Also added -fpp flag to Intel Fortran compiler on Windows by default.
* BUG: Restore old interface of "make foo.o" and "make foo.i" even though ↵Brad King2008-01-071-0/+1
| | | | object file names now include source extensions. For Java we also need to always remove the source extension (.java -> .class). This fixes the re-opening of bug #6169.
* ENH: Add support to CMAKE_DETERMINE_COMPILER_ID macro to try building the id ↵Brad King2008-01-072-92/+166
| | | | source more than once with different extra flags added to the compiler. Use the support to correctly identify the Intel Fortran compiler on windows which does not preprocess by default without special flags.
* BUG: Support cross-compiling; wx-config should be searched for in target ↵Miguel A. Figueroa-Villanueva2008-01-061-7/+5
| | | | platform ONLY (bug 6187).
* ENH: Generalized the WXWIDGETS_ADD_RESOURCES to support header generation, ↵Miguel A. Figueroa-Villanueva2008-01-051-49/+183
| | | | xrs file generation, and other options (BUG: 6162).
* ENH: rename variables from GIFLIB_* to GIF_*Alexander Neundorf2008-01-042-37/+38
| | | | | | | | | | | | -add standard QUIET and REQUIRED handling -add GIF_LIBRARIES variable as readme.txt says -add name giflib to the names for the gif library -remove some unnecessary search paths for the lib (they are already part of the standard search paths, see Modules/Platform/UnixPaths.cmake) -FindFreetype.cmake: use PATH_SUFFIXES include again for the headers with the CMAKE_PREFIX_PATH variable Alex
* STYLE: rename FindGIFLIB.cmake to FindGIF.cmake, as discussed with EricAlexander Neundorf2008-01-041-0/+0
| | | | Alex
* BUG: fix spelling of the xf86misc and xf86vmode variablesAlexander Neundorf2008-01-041-9/+8
| | | | Alex
* ENH: Added all lowercase 'openal' to library search names in hopes of addressingEric Wing2008-01-041-3/+3
| | | | bug 6201 (won't detect on Gentoo).
* STYLE: use FIND_PACKAGE_HANDLE_STANDARD_ARGS() to handle QUIET and REQUIREDAlexander Neundorf2008-01-041-37/+29
| | | | | | | | -remove some unnecessary search paths (they are part of the default paths) -don't use PATH_SUFFIXES for include/ when searching for a header, that's very uncommon style -add FREETYPE_LIBRARIES as the variable which should be used by the user (as documented in readme.txt) Alex
* STYLE: renamed FindFreeType.cmake to FindFreetype.cmake to make it moreAlexander Neundorf2008-01-041-0/+0
| | | | | | compatible with the one in KDE4 Alex
* BUG: fix for bug 6151Bill Hoffman2008-01-021-3/+8
|
* ENH: check the magic code of the executable file to determine the executableAlexander Neundorf2008-01-022-4/+36
| | | | | | | | | | file format. Tested for ELF on x86 Linux, COFF and Mach-O prepared but commented out since I don't have such systems available. Please have a look a CMakeDetermineCompilerId.cmake and enable the test for them too. Only add the option for using chrpath if the executable format is ELF Alex
* ENH: add more ruby paths: sitearch, sitelib, vendorarch, vendorlib (#5531)Alexander Neundorf2008-01-021-16/+51
| | | | | | | | -make these variables cached and ADVANCED -remove unused QUIETLY code -document RUBY_LIBRARY Alex
* BUG: make FindRuby work with the libs for MSVC, which can have additionalAlexander Neundorf2008-01-021-2/+4
| | | | | | pre- and suffixes (#5642) Alex
* ENH: add ability to have manifest files and incremental linking with make ↵Bill Hoffman2008-01-013-74/+4
| | | | and nmake