summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* CMake Nightly Date StampKitware Robot2014-06-161-1/+1
|
* CMake Nightly Date StampKitware Robot2014-06-151-1/+1
|
* CMake Nightly Date StampKitware Robot2014-06-141-1/+1
|
* Merge topic 'fix-read-after-free'Brad King2014-06-131-5/+13
|\ | | | | | | | | | | | | 5b2c2d2f Merge branch 'backport-fix-read-after-free' into fix-read-after-free 23ffb72a cmake: Fix read-after-free while checking command-line arguments fe44f057 cmake: Fix read-after-free while checking command-line arguments
| * Merge branch 'backport-fix-read-after-free' into fix-read-after-freeBrad King2014-06-120-0/+0
| |\ | | | | | | | | | Resolve conflicts in Source/cmake.cxx in our favor.
| | * cmake: Fix read-after-free while checking command-line argumentsBrad King2014-06-121-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | Since commit v2.8.12~300^2~1 (CLI: Suppress the unused warning if the key value pair is cached, 2013-05-16), cmake::SetCacheArgs saves a cachedValue pointer and may cause the memory to be freed (by setting the cache entry) before reading it again. Fix this by saving the old value in a separate string.
| * | cmake: Fix read-after-free while checking command-line argumentsBrad King2014-06-121-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | Since commit v2.8.12~300^2~1 (CLI: Suppress the unused warning if the key value pair is cached, 2013-05-16), cmake::SetCacheArgs saves a cachedValue pointer and may cause the memory to be freed (by setting the cache entry) before reading it again. Fix this by saving the old value in a separate string.
* | | Merge topic 'buildsystem-doc-updates'Brad King2014-06-133-20/+53
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 20f54602 Help: Link to Object Library docs from add_library a8153181 Help: Organize add_library command documentation d8319f0f Help: Update style guide to use section headers for command signatures 50dca471 Help: Organize Binary Targets section of cmake-buildsystem.7 4054534c Help: Mention INTERFACE_SOURCES as settable for INTERFACE libs
| * | | Help: Link to Object Library docs from add_libraryBrad King2014-06-121-2/+2
| | | |
| * | | Help: Organize add_library command documentationBrad King2014-06-121-4/+15
| | | | | | | | | | | | | | | | | | | | Add a section for each library type signature. Add a table of contents at the top for the html builder.
| * | | Help: Update style guide to use section headers for command signaturesBrad King2014-06-121-3/+4
| | | | | | | | | | | | | | | | | | | | In order to be able to link to specific command signatures we need to use a section header instead of a horizontal separator.
| * | | Help: Organize Binary Targets section of cmake-buildsystem.7Brad King2014-06-121-7/+26
| | | | | | | | | | | | | | | | | | | | | | | | Add a subsection for Binary Executables just before Binary Library Types. Divide the library section into Normal Libraries and Object Libraries.
| * | | Help: Mention INTERFACE_SOURCES as settable for INTERFACE libsBrad King2014-06-122-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The add_library(INTERFACE) and Interface Libraries documentation list all the INTERFACE_* properties and target_* commands that can be used to define the interface. Add INTERFACE_SOURCES and target_sources() to these lists for completeness.
* | | | Merge topic 'add_jacoco_coverage_parsing'Brad King2014-06-139-1/+348
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 558c2190 CTest: Add Jacoco Coverage functionality
| * | | | CTest: Add Jacoco Coverage functionalityJoseph Snyder2014-06-129-1/+348
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the ability to parse the XML output of the Jacoco tool. Jacoco (www.eclemma.org/jacoco) is a Java coverage tool. Add and integrate a class for the parser and include a test which utilizes the new parser.
* | | | | Merge topic 'setlocale'Brad King2014-06-134-4/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | c746b00e Encoding: Change to only set LC_CTYPE to fix encoding issues with libarchive.
| * | | | | Encoding: Change to only set LC_CTYPE to fix encoding issues with libarchive.Clinton Stimpson2014-06-124-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changing all categories with LC_ALL causes test failures in some locales. For example, in some locales, the decimal characer could be a comma instead of period.
* | | | | | CMake Nightly Date StampKitware Robot2014-06-131-1/+1
| |_|/ / / |/| | | |
* | | | | Merge topic 'doc-WCDH-align-macros'Brad King2014-06-121-0/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 34f95bcf WCDH: Document the alignof and alignas wrapper macros.
| * | | | | WCDH: Document the alignof and alignas wrapper macros.Stephen Kelly2014-06-101-0/+10
| | | | | |
* | | | | | Merge topic 'hpux-ProcessorCount'Brad King2014-06-121-0/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | dbc0f63d ProcessorCount: Update for HPUX 11iv3
| * | | | | | ProcessorCount: Update for HPUX 11iv3Eric Berge2014-06-101-0/+4
| | | | | | |
* | | | | | | Merge topic 'dev/variable-lookup'Brad King2014-06-123-22/+35
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e17a69bc cmDefinitions: Use a hashmap for faster checks 3b21705d cmDefinitions: Avoid a find-then-insert when setting variables 5abfde6c cmDefinitions: Don't store parent lookups
| * | | | | | cmDefinitions: Use a hashmap for faster checksBen Boeckel2014-06-092-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The hash map is much faster at checking that the map won't have what we're looking for so that we can just go to the parent scope instead.
| * | | | | | cmDefinitions: Avoid a find-then-insert when setting variablesBen Boeckel2014-06-091-10/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Searching the map is not necessary.
| * | | | | | cmDefinitions: Don't store parent lookupsBen Boeckel2014-06-093-10/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When looking up scopes, it is faster to not store the lookup locally to keep the maps smaller and avoid extra allocations and rebalancing.
* | | | | | | CMake Nightly Date StampKitware Robot2014-06-121-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2014-06-111-1/+1
| |/ / / / / |/| | | | |
* | | | | | Merge branch 'release'Brad King2014-06-100-0/+0
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | CMake 3.0.0v3.0.0Brad King2014-06-091-1/+1
| | |_|_|/ | |/| | |
* | | | | Merge topic 'WriteCompilerDetectionHeader-compiler-versions'Brad King2014-06-1030-94/+184
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ddec418a Features: Add compiler version support to WriteCompilerDetectionHeader. b7029576 Project: Add configurable name for version computation macros. 78acaafe Project: Separate simulated compiler id from version detection. 567af1a5 WCDH: Issue a better message for version compatibility.
| * | | | | Features: Add compiler version support to WriteCompilerDetectionHeader.Stephen Kelly2014-06-093-1/+69
| | | | | |
| * | | | | Project: Add configurable name for version computation macros.Stephen Kelly2014-06-0526-87/+89
| | | | | |
| * | | | | Project: Separate simulated compiler id from version detection.Stephen Kelly2014-06-053-3/+14
| | | | | |
| * | | | | WCDH: Issue a better message for version compatibility.Stephen Kelly2014-06-052-3/+12
| | | | | |
* | | | | | Merge topic 'no-parse-directory'Brad King2014-06-104-1/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | b1c113d9 cmake: Do not open directories as scripts (#14966)
| * | | | | | cmake: Do not open directories as scripts (#14966)Brad King2014-06-094-1/+6
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | Check if a file path is a directory before opening it. Extend the RunCMake.CommandLine test with a case running "cmake -P" on a directory.
* | | | | | Merge topic 'android-platform'Brad King2014-06-102-0/+10
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 42f74df6 Add basic Android platform module
| * | | | | | Add basic Android platform moduleBrad King2014-06-062-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a Platform/Android module that includes Platform/Linux since Android is based on Linux. Provide only the minimal settings needed to get builds with Android NDK toolchains to work. Disable use of RPATH since the Android loader ignores it and we cannot predict the install destination anyway. Android supports soname but shared library names must end in ".so" and we cannot represent the versioned names with associated symlinks on all host operating systems anyway. However, we do want the SONAME of library files to be set so that linking to them by path to the library file produces NEEDED entries with the soname and not the path. Add a new CMAKE_PLATFORM_NO_VERSIONED_SONAME setting to tell the cmTarget::GetLibraryNames method that not to use the VERSION or SOVERSION target properties in the soname.
* | | | | | | Merge topic 'vs10-refactor'Brad King2014-06-105-153/+176
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1edaef39 VS: Factor MS-tool-specific vcxproj settings into helper 808f4b1f VS: Re-order logic to group MS-tool-specific options together 13e6d559 VS: Set some options directly instead of using flag map 8f4bdcc6 VS: Remove always-true condition on compile options block eaa9f2f8 VS: Refactor internal generator factory logic 2b3e7b6f VS: Fix vcxproj specification of empty output file extension 39af06e7 VS: Fix vcxproj elements specifying binary output locations ee329d54 VS: Refactor flag table lookup
| * | | | | | | VS: Factor MS-tool-specific vcxproj settings into helperBrad King2014-06-092-45/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Factor a WriteMSToolConfigurationValues helper method out of the cmVisualStudio10TargetGenerator::WriteProjectConfigurationValues method to isolate the configuration settings specific to MS tools.
| * | | | | | | VS: Re-order logic to group MS-tool-specific options togetherBrad King2014-06-091-27/+29
| | | | | | | |
| * | | | | | | VS: Set some options directly instead of using flag mapBrad King2014-06-091-14/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of passing /TC, /TP, and /STACK: as strings to be parsed through the flag map, directly set the results in the options map.
| * | | | | | | VS: Remove always-true condition on compile options blockBrad King2014-06-091-36/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The cmVisualStudio10TargetGenerator::ComputeClOptions method is only called when the target type compiles, so do not duplicate that check in the implementation.
| * | | | | | | VS: Refactor internal generator factory logicBrad King2014-06-093-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Consume the space before the platform name as soon as possible instead of including it in the comparison.
| * | | | | | | VS: Fix vcxproj specification of empty output file extensionBrad King2014-06-091-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a binary output file is to have no extension, the TargetExt element in the vcxproj cannot be left empty because VS will choose a default extension. Instead use "." because the Windows filesystem will treat that as an empty extension.
| * | | | | | | VS: Fix vcxproj elements specifying binary output locationsBrad King2014-06-091-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix generation of OutDir, IntDir, TargetName, and TargetExt element values to encode the values for XML.
| * | | | | | | VS: Refactor flag table lookupBrad King2014-06-092-16/+24
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In cmVisualStudio10TargetGenerator, convert the static functions currently used to lookup the flag table for each tool into class methods. This avoids passing the this->LocalGenerator member and gives the methods access to other information that may be useful in the future.
* | | | | | | Merge topic 'dev/static-regex'Brad King2014-06-106-25/+19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1b003c1f cmTarget: Remove an unused variable 7492a7b8 regex: Search on strings where possible 3e7194a2 regex: Use static regexs where possible
| * | | | | | | cmTarget: Remove an unused variableBen Boeckel2014-06-091-1/+0
| | | | | | | |