summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
Commit message (Collapse)AuthorAgeFilesLines
* install(TARGETS): Add RUNTIME_DEPENDENCIES optionKyle Edwards2021-06-041-3/+2
|
* file: Add undocumented RPATH_SET commandKyle Edwards2021-06-041-0/+61
|
* Refactor: Modify file(RPATH_*) to use cmArgumentParserKyle Edwards2021-06-041-77/+61
|
* file(GET_RUNTIME_DEPENDENCIES): Add undocumented RPATH_PREFIX optionKyle Edwards2021-06-041-0/+7
|
* file(GET_RUNTIME_DEPENDENCIES): Add POST_{IN,EX}CLUDE_FILES argumentsKyle Edwards2021-06-011-10/+24
|
* cmFileCommand: Remove unused local variableBrad King2021-04-281-3/+0
|
* file(REAL_PATH): add option EXPAND_TILDEMarc Chevrier2021-04-211-3/+20
| | | | | This option enables the replacement of any leading tilde with the path to the user's home directory.
* cmSystemTools: Return KWSys Status from CreateLink and CreateSymlinkBrad King2021-04-151-2/+4
|
* Update CMake code using KWSys to account for Status return valuesBrad King2021-04-141-3/+6
| | | | | | KWSys as of 2021-04-14 changed the return type of `SystemTools` operations from `bool` to `Status`. Update our call sites. This may improve error reporting accuracy in a few places.
* Merge topic 'commands-file-permissions'Brad King2021-03-291-7/+7
|\ | | | | | | | | | | | | | | | | | | 769ff05483 Help: Clarify permission-related command options 900184616a Cleanup: Fix misspelt name of local C++ variable 635431a0c9 Tests: Check host platform instead of target for running stat 4ceb0ca59e Tests: Remove redundant files for configure_file() tests Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5945
| * Cleanup: Fix misspelt name of local C++ variableCraig Scott2021-03-261-7/+7
| |
* | file: add `COPY_FILE` subcommandBen Boeckel2021-03-101-0/+92
| | | | | | | | | | | | The `file(COPY)` subcommand is overloaded and busy for such a simple operation. Instead, make a simpler subcommand with error handling support.
* | file(RENAME): Add option to not replace existing pathBrad King2021-03-041-3/+14
| | | | | | | | | | Add a `NO_REPLACE` option that prevents overwriting `<newname>` if it exists.
* | cmSystemTools: Add RenameFile option to not replace destinationBrad King2021-03-041-1/+3
| |
* | file(RENAME): Add option to capture error message on failureBrad King2021-03-041-7/+34
|/
* Rename CMAKE_USE_ELF_PARSER to CMake_USE_ELF_PARSERBrad King2021-02-031-2/+2
| | | | We use the `CMake_` prefix for options affecting CMake itself.
* file(CONFIGURE): Use text mode for default OUTPUT contentCristian Adam2021-02-021-1/+3
| | | | | | This affects only Windows where \n will be translated as \r\n Fixes: #21769
* Merge topic 'issue-19198'Brad King2021-02-021-4/+20
|\ | | | | | | | | | | | | | | 255df8622b file(GENERATE): Support new line style Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Brad King <brad.king@kitware.com> Merge-request: !5649
| * file(GENERATE): Support new line styleAsit Dhal2021-02-011-4/+20
| | | | | | | | Fixes: #19198
* | file(CONFIGURE): Fix newlines in CONTENTCristian Adam2021-01-291-6/+8
|/ | | | Fixes: #21749
* clang-tidy: fix `bugprone-signed-char-misuse` warningsBen Boeckel2021-01-271-2/+1
|
* clang-tidy: fix `bugprone-reserved-identifier` warningsBen Boeckel2021-01-271-1/+1
|
* file(GENERATE): Support options to manipulate file permissionsAsit Dhal2020-12-211-9/+73
| | | | Fixes: #15653
* file(configure): Order of named options should be specified in any orderAsit Dhal2020-12-131-30/+55
| | | | Fixes: #20915
* Merge topic 'file-configure-angle-brackets'Brad King2020-10-161-9/+1
|\ | | | | | | | | | | | | 06a9a3bdc3 file(CONFIGURE): Allow angle brackets in content Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5379
| * file(CONFIGURE): Allow angle brackets in contentCristian Adam2020-10-151-9/+1
| | | | | | | | Fixes: #21306
* | file(GENERATE): Refactor options handlingAsit Dhal2020-10-121-29/+73
|/
* file(ARCHIVE_CREATE): Add option to control compression levelAsit Dhal2020-09-211-11/+41
| | | | Fixes: #21125
* file(): Add REAL_PATH sub-commandMarc Chevrier2020-09-081-0/+46
|
* cmMakefile::GetDefinition: return cmPropVitaly Stakhovsky2020-09-021-6/+7
|
* file: Add CHMOD and CHMOD_RECURSE subcommandsSibi Siddharthan2020-08-261-0/+160
| | | | | | Fixes: #21057 Signed-off-by: Sibi Siddharthan <sibisiddharthan.github@gmail.com>
* file(GENERATE): Add TARGET argumentRaul Tambre2020-08-201-10/+25
| | | | | | | Adds TARGET argument to file(GENERATE) to make resolving generator expressions requiring a target possible. Implements #21101, fixes #21074.
* Correct a typo in cmFileCommand.cxxFelix Yan2020-08-061-1/+1
|
* file(DOWNLOAD): Make file argument optionalKyle Edwards2020-07-271-22/+41
|
* Merge topic 'file-ARCHIVE-files-dirs'Brad King2020-07-011-35/+22
|\ | | | | | | | | | | | | bbcff21f71 file(ARCHIVE*): Collapse FILES and DIRECTORY options Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4955
| * file(ARCHIVE*): Collapse FILES and DIRECTORY optionsCraig Scott2020-06-301-35/+22
| | | | | | | | | | | | | | | | The two options were concatenated internally for both ARCHIVE_CREATE and ARCHIVE_EXTRACT. The distinction between files and dirs was not meaningful. Therefore, replace them with PATHS or PATTERNS to more accurately describe the way the options are used. Fixes: #20884
* | Merge topic 'file-CONFIGURE-subdir'Brad King2020-06-301-1/+2
|\ \ | |/ |/| | | | | | | | | e5f5eeca2f file: Fix CONFIGURE output relative path Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4951
| * file: Fix CONFIGURE output relative pathBrad King2020-06-291-1/+2
| | | | | | | | | | | | | | | | | | In commit a6fee09484 (file: Add CONFIGURE subcommand, 2020-03-06, v3.18.0-rc1~584^2) we accidentally treated relative path outputs with respect to the current working directory. Treat them with respect to the current binary directory instead. Fixes: #20885
* | file(ARCHIVE_CREATE): Rename TYPE option to COMPRESSIONCraig Scott2020-06-271-9/+9
|/ | | Fixes: #20883
* cmFileCommand: Log cmsys::Glob warningsDmitry Kalinkin2020-05-191-4/+9
|
* Refactoring: Third-parties public headers are under cm3p prefixMarc Chevrier2020-05-071-2/+3
| | | | Fixes: #20666
* Refactoring: rename "cm_static_string_view.hxx" as <cmext/string_view>Marc Chevrier2020-04-301-1/+1
|
* Refactoring: add cm::contains to <cmext/algorithm>Marc Chevrier2020-04-171-2/+2
|
* file(UPLOAD): Add support for TLS_VERIFY and TLS_CAINFOHarry Mallon2020-04-081-6/+35
| | | | | * Improve and test err messages when TLS_VERIFY and TLS_CAINFO are not set in file(DOWNLOAD) and file(UPLOAD).
* file(UPLOAD): Add default ca_certsHarry Mallon2020-04-071-0/+7
| | | | | | | Default ca_certs were not added when using `UPLOAD` with built-in (non-system) cURL. Previously we only did this for `DOWNLOAD`. Fixes: #20551
* Simplify absolute path conversions using CollapseFullPath full signatureBrad King2020-03-241-5/+2
|
* file: Add ARCHIVE_{CREATE|EXTRACT} subcommandsCristian Adam2020-03-161-0/+208
| | | | Fixes: #20443
* file: Add CONFIGURE subcommandLeander Beernaert2020-03-091-0/+118
| | | | | | | | Extend the `file()` command with a new `CONFIGURE` subcommand that behaves the same as `string(CONFIGURE)` except that it writes the resulting output immediately to a file. Fixes: #20388
* file(GET_RUNTIME_DEPENDENCIES): Tolerate empty list argumentsKyle Edwards2020-01-221-3/+15
| | | | | Also list all keywords that were missing values instead of only the first one.
* file(DOWNLOAD): Don't fail if given just a filename to write toJohnny Jazeix2020-01-151-1/+2
| | | | Fixes: #17969