summaryrefslogtreecommitdiff
path: root/tar/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Avoid CMake Warning that used GET_TARGET_PROPERTY with LOCATION property,Michihiro NAKAJIMA2014-10-131-1/+0
| | | | so we should use $<TARGET_FILE> expression instead.
* Implement reading a passphrase from ttys.Michihiro NAKAJIMA2014-09-211-0/+2
|
* Introduce -a/--auto-compress option into bsdtar.Michihiro NAKAJIMA2012-10-221-0/+1
| | | | | This automatically decides on a creation format and filters by the archive suffix.
* Introduce archive_match_exclude_pattern_from_file(_w) andMichihiro NAKAJIMA2012-02-121-2/+0
| | | | | | archive_match_include_pattern_from_file(_w) reading exclusion/inclusion patterns from a file. And so retire lafe_exclude_from_file() and lafe_include_from_file because we can use new APIs instead.
* Add the ability to parse a date string into archive_matching.Michihiro NAKAJIMA2012-02-071-1/+0
|
* Use archive_matching API at both bsdcpio and bsdtar instead of lafe_exclude ↵Michihiro NAKAJIMA2012-01-181-2/+0
| | | | | | | | | functions. - Remove libarchive_fe/matching.[ch], which are no longer needed. - Move cpio/test/test_pathmatch.c into libarchive/test/test_archive_pathmatch.c. SVN-Revision: 4168
* Retire tar/tree.[ch], directory traversal code, switched by new one ↵Michihiro NAKAJIMA2012-01-171-2/+0
| | | | | | implemented in libarchive library. SVN-Revision: 4164
* I stupidly misunderstood a handling of CMake build options, ENABLE_TAR, ↵Michihiro NAKAJIMA2011-11-151-2/+2
| | | | | | | | | | | ENABLE_TAR_SHARED, ENABLE_CPIO and ENABLE_CPIO_SHARED, in r3240 and r3713. And that had made bsdtar and bsdcpio disabled or being test failure on Windows platform. - Simplify CMake build options; all platforms have the same default build options. - Back out r3713. SVN-Revision: 3791
* Build tar and cpio when both ENABLE_TAR and ENABLE_CPIO are OFF on CMake ↵Michihiro NAKAJIMA2011-09-151-2/+2
| | | | | | build system. SVN-Revision: 3713
* Issue 48: Instead of setting RUNTIME_OUTPUT_DIRECTORY separately forTim Kientzle2010-01-031-5/+0
| | | | | | | | | each component, set CMAKE_RUNTIME_OUTPUT_DIRECTORY once at the top and let each component inherit that implicitly. This allows other projects that want to include libarchive to do so a little more simply. SVN-Revision: 1800
* On Windows, building a client against a static libarchiveTim Kientzle2009-11-161-0/+2
| | | | | | requires LIBARCHIVE_STATIC be defined. SVN-Revision: 1653
* Use Cmake's target property "LOCATION" to locate bsdtar exe.Tim Kientzle2009-08-111-7/+8
| | | | SVN-Revision: 1360
* Overhaul the SIGINFO/SIGUSR1 reporting. This is a littleTim Kientzle2009-07-161-1/+0
| | | | | | | | simpler and gives a lot more information. In particular, it reports total bytes in/out, total files and compression ratio, in addition to reporting the current file being processed. SVN-Revision: 1223
* A lot of common client source files were recently moved toTim Kientzle2009-05-291-2/+10
| | | | | | the 'libarchive_fe' directory. SVN-Revision: 1139
* Revert r838,r839 and r840.Michihiro NAKAJIMA2009-03-251-5/+0
| | | | SVN-Revision: 842
* Make archive_windows.c internal static library.Michihiro NAKAJIMA2009-03-241-1/+5
| | | | | | | Now bsdtar and bsdcpio on Windows can be made by both static build and dynamic build. SVN-Revision: 840
* Remove a lot of duplicate functions which simulates POSIXMichihiro NAKAJIMA2009-03-241-0/+1
| | | | | | | | | | | | function for Windows platform. And move the remaining simulate functions to archive_windows.[ch]. It will be easy maintenance and avoid the same named functions having different codes. This change does *not* mean libarchive library has those ones or exports it. All libarchive's executable programs include archive_windows.c for one of its program files. SVN-Revision: 838
* Add support both static and dynamic build of bsdtar and bsdcpioMichihiro NAKAJIMA2009-03-201-2/+6
| | | | | | to the cmake build process except Windows. SVN-Revision: 826
* Split a CMakeLists.txt into each subdirectory, and removeMichihiro NAKAJIMA2009-03-201-0/+46
useless '#include LIST_H'. It was used for out-of-source build with the previous CMakeLists.txt. SVN-Revision: 823