summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/File_Archive
Commit message (Collapse)AuthorAgeFilesLines
* Tests/RunCMake: Update cmake_minimum_required versionsBrad King2023-02-111-1/+1
| | | | | | | | For policy-specific tests, use the version before the policy was introduced. Otherwise, use 3.5 where possible. Also, remove `cmake_minimum_required()` and `project()` calls from individual cases where they are handled by `CMakeLists.txt`.
* file(ARCHIVE_CREATE): Allow higher compression level for ZstdAmir Masoud Abdol2022-11-163-2/+5
| | | | | | | | This allows the Zstd compression-level to be set between 0-19. I've adjusted some of the tests, and error messages to indicates the selected algorithm, and min/max of its compression-level. Fixes: #24160
* cmFileCommand: Report keyword errors via argument parser resultsBrad King2022-07-222-8/+22
|
* file(ARCHIVE*): Add test for keyword arguments with missing valuesBrad King2022-06-297-0/+34
|
* file(ARCHIVE_CREATE): Add option to control compression levelAsit Dhal2020-09-2116-0/+191
| | | | Fixes: #21125
* file(ARCHIVE*): Collapse FILES and DIRECTORY optionsCraig Scott2020-06-302-14/+14
| | | | | | | | 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
* file(ARCHIVE_CREATE): Rename TYPE option to COMPRESSIONCraig Scott2020-06-2719-18/+31
| | | Fixes: #20883
* file: Add ARCHIVE_{CREATE|EXTRACT} subcommandsCristian Adam2020-03-1619-0/+228
Fixes: #20443