Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmGeneratorTarget: Add API for property keys | Stephen Kelly | 2015-10-27 | 1 | -7/+9 |
| | |||||
* | Export: Port interface to cmGeneratorTarget. | Stephen Kelly | 2015-10-18 | 1 | -27/+24 |
| | |||||
* | cmExportTryCompileFileGenerator: Port to cmGeneratorTarget. | Stephen Kelly | 2015-10-18 | 1 | -12/+18 |
| | |||||
* | Merge topic 'genex-consumers-generator-targets' | Brad King | 2015-10-16 | 1 | -5/+6 |
|\ | | | | | | | | | | | c4ae1578 Genex: Port some access API to cmGeneratorTarget. 6d27a3db Genex: Port implementation to cmGeneratorTarget. | ||||
| * | Genex: Port some access API to cmGeneratorTarget. | Stephen Kelly | 2015-10-15 | 1 | -5/+6 |
| | | |||||
* | | cmState: Move TargetType enum from cmTarget. | Stephen Kelly | 2015-10-14 | 1 | -1/+1 |
|/ | | | | | | | Mostly automated: values=( "EXECUTABLE" "STATIC_LIBRARY" "SHARED_LIBRARY" "MODULE_LIBRARY" "OBJECT_LIBRARY" "UTILITY" "GLOBAL_TARGET" "INTERFACE_LIBRARY" "UNKNOWN_LIBRARY" "TargetType") for i in "${values[@]}"; do git grep -l cmTarget::$i | xargs sed -i "s|cmTarget::$i|cmState::$i|g"; done | ||||
* | cmGeneratorExpression: Port interface to cmGeneratorTarget. | Stephen Kelly | 2015-10-12 | 1 | -2/+3 |
| | |||||
* | cmGeneratorExpression: Port to cmLocalGenerator. | Stephen Kelly | 2015-10-12 | 1 | -1/+1 |
| | |||||
* | cmExportTryCompileFileGenerator: Evaluate genex with cmGeneratorTarget. | Stephen Kelly | 2015-10-05 | 1 | -2/+6 |
| | |||||
* | cmGeneratorTarget: Move GetInstallNameDir* from cmTarget. | Stephen Kelly | 2015-08-05 | 1 | -2/+2 |
| | |||||
* | cmExportTryCompileFileGenerator: Create cmGeneratorTargets. | Stephen Kelly | 2015-07-27 | 1 | -0/+7 |
| | | | | | This is not a deprecated behavior, but only requires IMPORTED targets be made. | ||||
* | cmExportTryCompileFileGenerator: Add newline between methods. | Stephen Kelly | 2015-06-07 | 1 | -0/+1 |
| | |||||
* | cmExportTryCompileFileGenerator: Remove unused variable. | Stephen Kelly | 2015-06-07 | 1 | -2/+0 |
| | |||||
* | genex: remove the need for backtraces | Ben Boeckel | 2014-06-05 | 1 | -3/+2 |
| | | | | | Rather than making dummy backtraces and passing them around, just make backtraces optional. | ||||
* | Remove some c_str() calls. | Stephen Kelly | 2014-03-11 | 1 | -2/+2 |
| | | | | | | Use the clang RemoveCStrCalls tool to automatically migrate the code. This was only run on linux, so does not have any positive or negative effect on other platforms. | ||||
* | stringapi: Use strings for property names | Ben Boeckel | 2014-03-08 | 1 | -2/+3 |
| | | | | Property names are always generated by CMake and should never be NULL. | ||||
* | cmMakefile: make some methods take const std::string& instead of const char* | Rolf Eike Beer | 2014-01-16 | 1 | -1/+1 |
| | | | | | | | | Most callers already have a std::string, on which they called c_str() to pass it into these methods, which internally converted it back to std::string. Pass a std::string directly to these methods now, avoiding all these conversions. Those methods that only pass in a const char* will get the conversion to std::string now only once. | ||||
* | Undefine local preprocessor loop variables. | Stephen Kelly | 2014-01-06 | 1 | -0/+2 |
| | | | | | Most occurances of this pattern already contain the undef, so add it to the rest too. | ||||
* | Genex: Simplify the preprocessor looper for interface properties. | Stephen Kelly | 2013-11-09 | 1 | -1/+1 |
| | | | | By removing the INTERFACE_ prefix, we can use this in more contexts. | ||||
* | cmTarget: Make GetProperty() const. | Stephen Kelly | 2013-10-31 | 1 | -9/+9 |
| | | | | | | This has follow-on effects for other methods and classes. Further work on making the use of const cmTarget pointers common can be done, particularly with a view to generate-time methods. | ||||
* | try_compile: Extract IMPORTED targets from INTERFACE_LINK_LIBRARIES | Stephen Kelly | 2013-08-26 | 1 | -1/+2 |
| | |||||
* | try_compile: Extract IMPORTED targets from LINK_DEPENDENT_LIBRARIES | Stephen Kelly | 2013-08-26 | 1 | -1/+2 |
| | |||||
* | Use a preprocessor loop to manage the valid transitive properties. | Stephen Kelly | 2013-06-10 | 1 | -3/+4 |
| | | | | | Hopefully this will prevent regressions when adding further transitive properties in the future. | ||||
* | Find targets in INTERFACE_COMPILE_OPTIONS when exporting for try_compile. | Stephen Kelly | 2013-06-10 | 1 | -0/+1 |
| | | | | | This was missing from commit 80ca9c4b (Add COMPILE_OPTIONS target property., 2013-05-16). | ||||
* | OS X: Add support for @rpath in export files. | Clinton Stimpson | 2013-06-03 | 1 | -0/+15 |
| | | | | | Also expand the IMPORTED_SONAME property for targets to match the install_name. | ||||
* | Add a new Export generator for IMPORTED targets. | Stephen Kelly | 2013-02-22 | 1 | -0/+114 |
This is to be used during try_compile using LINK_LIBRARIES in the srcfile signature and, in the future, TARGETS in the binary dir signature. |