summaryrefslogtreecommitdiffstats
path: root/Help/manual
Commit message (Collapse)AuthorAgeFilesLines
* Add 'ANDROID_API_MIN' target property to set Android Target MIN APIDmitry Polyanitsa2014-12-173-2/+5
| | | | | | Also add a 'CMAKE_ANDROID_API_MIN' variable to set the property default. Teach the VS generator to write the MIN API value into Nsight Tegra project files.
* Help: Drop FeatureSummary example in cmake-developer.7Brad King2014-12-091-11/+0
| | | | | | | | | The use of FeatureSummary inside a find module is not a convention yet used by upstream CMake modules. Drop the example from the documentation about how to write find modules. If in the future we add use of FeatureSummary to many of the upstream find modules then this example can be restored as part of establishing the convention.
* Merge topic 'try_compile-link-flags'Brad King2014-12-081-0/+1
|\ | | | | | | | | | | 88eb5824 try_compile: Pass linker flags into test project (#14066) a4f9b6f0 CMakeDetermineCompilerABI: Use normal linker flags in ABI project
| * try_compile: Pass linker flags into test project (#14066)Brad King2014-12-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Copy CMAKE_EXE_LINKER_FLAGS into the test project generated by try_compile, just like we already copy CMAKE_<LANG>_FLAGS. Add CMake Policy CMP0056 to activate this behavior in a compatible way, but do not warn by default when the policy is not set since it will affect all try_compile calls. Extend the RunCMake.try_compile test with a case covering this behavior for each policy setting.
* | Merge topic 'xerces-rename'Brad King2014-12-051-1/+1
|\ \ | | | | | | | | | | | | 27141eed Modules: Rename FindXerces to FindXercesC
| * | Modules: Rename FindXerces to FindXercesCBrad King2014-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The FindXerces module was added in commit v3.1.0-rc1~155^2 (FindXerces: New module to find Apache Xerces-C++, 2014-08-17). However, there are two implementations of Xerces, one in C++: http://xerces.apache.org/xerces-c/ and one in Java: http://xerces.apache.org/xerces-j/ Rename FindXerces to FindXercesC to clarify that it is about the C++ implementation. While at it, add the missing CMake 3.1 release note about this module. Suggested-by: Erik Sjölund <erik.sjolund@gmail.com>
* | | Help: Document that IMPORTED targets in Find modules may be UNKNOWN.Stephen Kelly2014-12-041-0/+5
| | |
* | | Help: Document IMPORTED_CONFIGURATIONS target property for Find modules.Stephen Kelly2014-12-041-1/+40
| | |
* | | Help: Remove recommendation about checking minimum CMake version.Stephen Kelly2014-12-041-10/+0
| | | | | | | | | | | | | | | If this file is being executed, the user has the CMake version providing it.
* | | Help: Add useful links to IMPORTED targets and usage requirements.Stephen Kelly2014-12-041-4/+3
| | |
* | | Help: Remove disadvantage creating IMPORTED targets in Find modules.Stephen Kelly2014-12-041-4/+1
| | | | | | | | | | | | | | | | | | | | | An IMPORTED target in either type of package can equally depend on an IMPORTED target in a Find module, which must be found as a dependency, which is presumably the problem being implied. This is not a distinction of creating an IMPORTED target in a Find module.
* | | Help: Link to cmake-packages(7) from the Module creation documentation.Stephen Kelly2014-12-042-1/+5
| | |
* | | Merge topic 'cached-regex-clear-fixed'Brad King2014-12-041-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | ceecd790 cmMakefile: store the number of last matches in a CMake var 7878d061 test: add a test for clearing regex results
| * | | cmMakefile: store the number of last matches in a CMake varBen Boeckel2014-12-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With PushScope and PopScope, keeping track of another bit of data for each scope isn't easy. Instead, store it as another CMake variable so it gets implicitly tracked along with everything else. This works in a revert of commit 7d674b5f0b28a610333644d417c2e8cb796cc9e4.
* | | | Merge topic 'vs-phone-store-deployment-location'Brad King2014-12-041-0/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | 352f246f VS: Add source file property to specify Windows App deployment location
| * | | VS: Add source file property to specify Windows App deployment locationGilles Khouzam2014-12-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a VS_DEPLOYMENT_LOCATION source file property to specify where to put files that are part of the package. For example: set_property(SOURCE ${ASSET_FILES} PROPERTY VS_DEPLOYMENT_LOCATION "assets") Without this, sources marked with VS_DEPLOYMENT_CONTENT cannot be located properly.
* | | | Merge topic 'vs-hlsl-settings'Brad King2014-12-031-0/+2
|\ \ \ \ | |/ / / | | | | | | | | | | | | 2a224b4c VS: Add source file properties to set the hlsl shader entry point and model
| * | | VS: Add source file properties to set the hlsl shader entry point and modelCedric Perthuis2014-12-031-0/+2
| | |/ | |/| | | | | | | | | | | | | Create properties VS_SHADER_ENTRYPOINT and VS_SHADER_MODEL. Without these many .hlsl source files may not be possible to use. Extend the VSWinStorePhone test project to cover them.
* | | Merge topic 'doc-Nsight-Tegra-toolchain'Brad King2014-12-031-0/+17
|\ \ \ | | | | | | | | | | | | | | | | 23e2bd7e Help: Document Nsight Tegra toolchain configuration (#15276)
| * | | Help: Document Nsight Tegra toolchain configuration (#15276)Brad King2014-12-021-0/+17
| |/ /
* | | Merge topic 'add-continue-command'Brad King2014-12-032-2/+5
|\ \ \ | | | | | | | | | | | | | | | | 0de867dd continue: Add a new CMake language command for loop continuation (#14013)
| * | | continue: Add a new CMake language command for loop continuation (#14013)Gregor Jasny2014-12-012-2/+5
| | | | | | | | | | | | | | | | | | | | Inspired-by: Doug Barbieri Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | | Merge topic 'doc-compile-features-typo'Brad King2014-12-021-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | 64f8c533 Help: Fix typo in cmake-compile-features(7) manual
| * | | Help: Fix typo in cmake-compile-features(7) manualDavid Demelier2014-12-021-1/+1
| | |/ | |/| | | | | | | Fix spelling 'execptions' => 'exceptions'.
* | | Merge topic 'doc-ctest-j-typo'Brad King2014-12-011-1/+1
|\ \ \ | |_|/ |/| | | | | | | | df53aafd Help: Add missing space to ctest -j option description
| * | Help: Add missing space to ctest -j option descriptionChristopher Dembia2014-12-011-1/+1
| | |
* | | Merge topic 'break-command-strictness'Brad King2014-11-261-0/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | d54617d0 break: Add policy CMP0055 to check calls strictly bae604d9 Track nested loop levels in CMake language with a stack of counters
| * | | break: Add policy CMP0055 to check calls strictlyGregor Jasny2014-11-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Reject break() without loop scope or any arguments. Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | | Remove note disallowing use of some string and vector API.Stephen Kelly2014-11-251-26/+0
|/ / / | | | | | | | | | | | | The compilers introducing these limitations are no longer supported as host compilers.
* | | Merge topic 'doc-drop-borland-workaround'Brad King2014-11-251-22/+0
|\ \ \ | | | | | | | | | | | | | | | | c2af447d Remove disallowed feature which Borland did not accept.
| * | | Remove disallowed feature which Borland did not accept.Stephen Kelly2014-11-251-22/+0
| | | |
* | | | Merge topic 'remove-ancient-msvc-workarounds'Brad King2014-11-251-7/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 12cb0b86 Help: Update developer manual with some C++ features now permitted. ba74465f cmGeneratorTarget: Remove MSVC7 workaround 41363c0c VisualStudio: Remove MSVC6 compatibility macro. 4efcfe52 cmSystemTools: Remove MSVC6 compatibility define. 5f4695cd cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro. 7a064337 cmFindCommon: Remove MSVC6 workaround for nested struct private access. fdb73547 cmTarget: Remove std::min and std::max MSVC6 compatibility code.
| * | | Help: Update developer manual with some C++ features now permitted.Stephen Kelly2014-11-201-7/+1
| | | |
* | | | Help: Warn that paths should not be used in INTERFACE_ build properties.Stephen Kelly2014-11-252-0/+38
| | | |
* | | | Help: Fix typo in genex in documentation.Stephen Kelly2014-11-221-1/+1
|/ / /
* | | Merge topic 'vs14-is-2015'Brad King2014-11-171-1/+1
|\ \ \ | |/ / | | | | | | | | | f5afb90d VS: Rename VS 14 generator to 'Visual Studio 14 2015'
| * | VS: Rename VS 14 generator to 'Visual Studio 14 2015'Brad King2014-11-141-1/+1
| |/ | | | | | | | | | | Now that we know the year component of this VS version we can add it to the generator name. For convenience, map the name without the year to the name with the year.
| * Merge branch 'doc-formatting' into releaseBrad King2014-11-071-1/+2
| |\
| * \ Merge branch 'release-doc-formatting' into releaseBrad King2014-11-0714-15/+87
| |\ \
| * \ \ Merge branch 'fix-configure_file-COPYONLY' into releaseBrad King2014-11-031-1/+1
| |\ \ \
| * \ \ \ Merge branch 'doc-line-lengths' into releaseBrad King2014-10-224-6/+21
| |\ \ \ \
* | | | | | FindIntl: New module to find Gettext libintlRoger Leigh2014-11-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for Sun/Uniforum/GNU gettext libintl. This belongs in CMake rather than upstream because: * There are multiple upstreams (Sun, GNU). * It may or may not be in the glibc C library depending upon the platform and build options used. Although we already have a FindGettext module, that is for the tools. This module is for the library, and is independent because it's perfectly OK to use libintl without the gettext tools (and vice versa), and they might not all be found. Add cross references between the two modules in notes to make the relationship clearer.
* | | | | | Merge topic 'doc-formatting'Brad King2014-11-071-1/+2
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | | | | | | | | | | | | | | f0ca3ef0 Help: Wrap long lines in pre-formatted documentation blocks
| * | | | | Help: Wrap long lines in pre-formatted documentation blocksBrad King2014-11-071-1/+2
| | |_|_|/ | |/| | | | | | | | | | | | | Help format the blocks better for display without a wide screen.
* | | | | Merge branch 'release-doc-formatting' into doc-formattingBrad King2014-11-0614-15/+87
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | Resolve conflict in Modules/ExternalProject.cmake by keeping our side, which is more completely revised.
| * | | | Help: Tell latex to use a small font for cmake-language.7 productionsBrad King2014-11-061-0/+72
| | | | |
| * | | | Help: Fix example in cmake-packages to avoid long lineBrad King2014-11-061-1/+1
| | | | |
| * | | | Help: Drop TOC from latex manualsBrad King2014-11-0614-14/+14
| | |/ / | |/| | | | | | | | | | A latex document can have its own TOC.
* | | | Merge topic 'fix-configure_file-COPYONLY'Brad King2014-11-031-1/+1
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | 1531df2b configure_file: Warn about unknown arguments 4abbb140 Qt4: Fix configure_file call to use COPYONLY, not COPY_ONLY bd7ba8e2 KWSys: Fix configure_file call to use COPYONLY, not COPY_ONLY e9282782 Help: Fix configure_file call to use COPYONLY, not COPY_ONLY
| * | | Help: Fix configure_file call to use COPYONLY, not COPY_ONLYIosif Neitzke2014-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | The configure_file signature has option 'COPYONLY' (no underscore). Fix the example in 'cmake-packages.7.rst'.