summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* CMake Nightly Date StampKitware Robot2012-12-031-1/+1
|
* CMake Nightly Date StampKitware Robot2012-12-021-1/+1
|
* CMake Nightly Date StampKitware Robot2012-12-011-1/+1
|
* Merge topic 'fix-cpack-tests'Brad King2012-11-303-15/+7
|\ | | | | | | | | 587b7b6 Tests: Use the right path to CPack value for running CPack tests
| * Tests: Use the right path to CPack value for running CPack testsDavid Cole2012-11-293-15/+7
| | | | | | | | | | | | | | | | | | These tests were not running properly on Visual Studio or Xcode dashboards before this commit because of the "Debug" or "Release" sub-directory. The scripts already have CMAKE_CPACK_COMMAND since the correct CMake executable is used to run the scripts, so just use that, rather than passing down an incorrect path to the CPack executable.
* | Merge topic 'MinorFixFPHSA_13755'Brad King2012-11-301-1/+4
|\ \ | | | | | | | | | | | | 4809cad FPHSA: don't succeed if only checking for XX_FOUND (#13755)
| * | FPHSA: don't succeed if only checking for XX_FOUND (#13755)Alex Neundorf2012-11-291-1/+4
| |/ | | | | | | | | | | | | | | | | | | | | | | | | This fixes issue #13755. FPHSA(XX DEFAULT_MSG XX_FOUND) always succeeded due to the way how the XX_FOUND variable was set. It was preset to TRUE, and then reset to FALSE if something was missing (...which had the effect that XX_FOUND itself was already preset when FPHSA checked whether XX_FOUND is set) Now XX_FOUND is unset first, and only later on set to TRUE. Alex
* | Merge topic 'fix-watcom-test-timeout'Brad King2012-11-301-1/+1
|\ \ | | | | | | | | | | | | 2238505 Watcom: Avoid prompt from wmake about dll with no exports...
| * | Watcom: Avoid prompt from wmake about dll with no exports...David Cole2012-11-281-1/+1
| | | | | | | | | | | | | | | ...by simply building a STATIC lib for the test, instead of a SHARED one. Fixes test timeout on the Watcom dashboards.
* | | Merge topic 'multiarch-include'Brad King2012-11-306-4/+38
|\ \ \ | | | | | | | | | | | | | | | | | | | | da1d9ba Test find_path multiarch support (#13742) b96f6fc Teach find_(path|file) about Linux multiarch (#13742)
| * | | Test find_path multiarch support (#13742)Brad King2012-11-264-0/+32
| | | |
| * | | Teach find_(path|file) about Linux multiarch (#13742)Brad King2012-11-262-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement support for multiarch include directories as specified here: https://wiki.ubuntu.com/MultiarchCross Generalize the multiarch feature added in commit b41ad3b3 (Teach find_(library|package) about Linux multiarch, 2011-06-08) to the find_path and find_file commands. Teach them to search <prefix>/include/<arch> whenever they would search <prefix>/include.
* | | | CMake Nightly Date StampKitware Robot2012-11-301-1/+1
| |_|/ |/| |
* | | CMake Nightly Date StampKitware Robot2012-11-291-1/+1
| | |
* | | Merge topic 'windows-ce'Brad King2012-11-2821-57/+402
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3a1006e VS: Added "Deploy" at project configuration for WindowsCE targets 40c36c9 VS: Make DetermineCompilerId working with WinCE too 038df9e VS: Allow setting the name of the target platform 6fe4fcb VS: Add parser for WCE.VCPlatform.config to read WinCE platforms 2118a20 VS: Support setting correct subsystem and entry point for WinCE 6920fed VS: Change variable type of Name from const char* to string 102521b VS: Change variable type of ArchitectureId from const char* to string 332dc09 VS: Add static method to get the base of the registry d41d4d3 VS: Add CMAKE_VS_PLATFORM_NAME definition to cmMakefile 14861f8 VS: Remove TargetMachine for linker when checking compiler id
| * | | VS: Added "Deploy" at project configuration for WindowsCE targetsPatrick Gansterer2012-11-276-8/+17
| | | |
| * | | VS: Make DetermineCompilerId working with WinCE tooPatrick Gansterer2012-11-276-1/+24
| | | | | | | | | | | | | | | | | | | | | | | | Add a dummy mainCRTStartup() function, since the linker searches for it instead of main() and set the CMAKE_SYSTEM_* variables depending on the MSVC_C_ARCHITECTURE_ID and CMAKE_VS_WINCE_VERSION variables.
| * | | VS: Allow setting the name of the target platformPatrick Gansterer2012-11-273-0/+7
| | | | | | | | | | | | | | | | | | | | Since the name for a target platform is independent of its cpu architecture an additional option is required to set it correctly.
| * | | VS: Add parser for WCE.VCPlatform.config to read WinCE platformsPatrick Gansterer2012-11-277-24/+297
| | | | | | | | | | | | | | | | | | | | | | | | Parse the WCE.VCPlatform.config file, which contains the installed WindowsCE SDKs in XML format, and add possibility to generate Visual Studio generators for them.
| * | | VS: Support setting correct subsystem and entry point for WinCEPatrick Gansterer2012-11-263-3/+21
| | | | | | | | | | | | | | | | | | | | WinCE has only one SubSystem. So the WIN32_EXECUTABLE property must be handled via the EntryPointSymbol in the vcproj files.
| * | | VS: Change variable type of Name from const char* to stringPatrick Gansterer2012-11-261-2/+2
| | | |
| * | | VS: Change variable type of ArchitectureId from const char* to stringPatrick Gansterer2012-11-264-7/+6
| | | |
| * | | VS: Add static method to get the base of the registryPatrick Gansterer2012-11-262-2/+12
| | | |
| * | | VS: Add CMAKE_VS_PLATFORM_NAME definition to cmMakefilePatrick Gansterer2012-11-263-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | When adding more platforms to the Visual Studio generators a simple regular expressing can not handle all cases anymore. This new define holds the name of the Visual Studio target platform.
| * | | VS: Remove TargetMachine for linker when checking compiler idPatrick Gansterer2012-11-202-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | If the TargetMachine isn't defined the linker will choose the correct target depending on the input file. This helps us later with additional compiler platforms for WinCE.
* | | | CMake Nightly Date StampKitware Robot2012-11-281-1/+1
| | | |
* | | | Merge branch 'release'Brad King2012-11-271-0/+14
|\ \ \ \
| * | | | CMake 2.8.10.2v2.8.10.2Brad King2012-11-262-1/+15
| | | | |
| * | | | Merge branch 'fix-untar-infinite-loop' into releaseBrad King2012-11-261-2/+5
| |\ \ \ \
| * \ \ \ \ Merge branch 'fix-FindGettext-result' into releaseBrad King2012-11-261-2/+0
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'fix-IMPORTED-GLOBAL-reconfigure' into releaseBrad King2012-11-261-0/+1
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'FixAutomocRegression3' into releaseBrad King2012-11-261-0/+59
| |\ \ \ \ \ \ \
* | \ \ \ \ \ \ \ Merge topic 'generator-expression-fixes'Brad King2012-11-277-4/+75
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b581be0 Genex: Don't segfault on $<FOO,> 07749e3 Genex: Ensure that $<0:...> has a parameter. ee96dc7 Genex: Extract a method to parse parameters.
| * | | | | | | | | Genex: Don't segfault on $<FOO,>Stephen Kelly2012-11-273-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Treat the comma as part of the identifier here. It will later not resolve to a generator expression and the user gets a proper error message.
| * | | | | | | | | Genex: Ensure that $<0:...> has a parameter.Stephen Kelly2012-11-275-0/+30
| | | | | | | | | |
| * | | | | | | | | Genex: Extract a method to parse parameters.Stephen Kelly2012-11-262-3/+26
| | |_|_|_|_|_|/ / | |/| | | | | | |
* | | | | | | | | Merge topic 'winflexbison'Brad King2012-11-272-5/+7
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | df29336 FindFLEX: Add support for the Win flex-bison distribution e593f8a FindBISON: Add support for the Win flex-bison distribution
| * | | | | | | | | FindFLEX: Add support for the Win flex-bison distributionPatrick Gansterer2012-11-261-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Search for win_flex too and improve version parsing.
| * | | | | | | | | FindBISON: Add support for the Win flex-bison distributionPatrick Gansterer2012-11-261-1/+1
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Search for win_bison too.
* | | | | | | | | Merge topic 'FindBullet-windows-configs'Brad King2012-11-271-0/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f180b24 FindBullet: Search in per-config dirs on Windows (#13738)
| * | | | | | | | | FindBullet: Search in per-config dirs on Windows (#13738)Alan Witkowski2012-11-261-0/+2
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Bullet for windows installs in these per-config paths.
* | | | | | | | | Merge topic 'fix-12437-remove-ridiculously-large-default-stack-size-arg'Brad King2012-11-272-3/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 51af1da CMake: Remove "/STACK:10000000" from default linker flags (#12437)
| * | | | | | | | | CMake: Remove "/STACK:10000000" from default linker flags (#12437)David Cole2012-11-232-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modern apps that use multiple threads do NOT want 10 Megabytes of RAM per thread being used for each thread's stack... Just leave off the /STACK: argument, and let the compiler use a reasonable default value for the stack size. If existing single-threaded apps require the /STACK: argument because they do need a very large stack size, they can add the flag in their own CMakeLists files.
* | | | | | | | | | Merge topic 'fix-13611-source-group-issues'Brad King2012-11-271-4/+5
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 00e9680 CMake: source_group needs to check its own regex after its children (#13611)
| * | | | | | | | | | CMake: source_group needs to check its own regex after its children (#13611)Clemens Heppner2012-11-231-4/+5
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Otherwise, regexes that descend into sub-folders do not get grouped correctly.
* | | | | | | | | | Merge topic 'revert-use-generator-target'Brad King2012-11-2717-103/+97
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0bbae6f Revert "Move GetLinkInformation to cmGeneratorTarget" d5cf644 Split link information processing into two steps. d8a59ea Port cmGeneratorExpression to cmTarget from cmGeneratorTarget.
| * | | | | | | | | | Revert "Move GetLinkInformation to cmGeneratorTarget"Stephen Kelly2012-11-2113-92/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As we can't move all linking related code from cmTarget, it makes sense to reverse the move in some cases. This reverts commit 4f5384e75c6a00d110d3fa3f555a3f6a4f31bb46.
| * | | | | | | | | | Split link information processing into two steps.Stephen Kelly2012-11-211-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The first step can be ported to use the generator expression API, while the second can not. This is for compatibility with CMP0003.
| * | | | | | | | | | Port cmGeneratorExpression to cmTarget from cmGeneratorTarget.Stephen Kelly2012-11-205-9/+7
| | |_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following from the discussion here: http://thread.gmane.org/gmane.comp.programming.tools.cmake.devel/3615/focus=5170 (Re: Generator expressisons in target properties, 26 Oct 12:10) we can't split cmTarget API for linking into cmGeneratorTarget. In the future we will probably also need to move the include and compile definitions API back to cmTarget so that it can be used by export().
* | | | | | | | | | Merge topic 'fix-13392-nmake-empty-depends-problem'Brad King2012-11-273-0/+25
|\ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7ae7d66 NMake: Fix problem with empty DEPENDS args (#13392) 078e35d NMake: Add a test to demonstrate EmptyDepends issue (#13392)