mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 18:23:15 +02:00
This adds support for opening .stpZ, step.gz and .wrz files where the files have been compressed using ZIP or gzip according to the "standard" published by the MBx volunteer forum at https://www.cax-if.org/documents/rec_prac_file_compression_v12.pdf Fixes https://gitlab.com/kicad/code/kicad/issues/2479
7 lines
201 B
CMake
7 lines
201 B
CMake
add_library( gzip-hpp INTERFACE )
|
|
|
|
target_include_directories( gzip-hpp INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
|
|
target_sources( gzip-hpp INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/decompress.hpp
|
|
) |