Descent3/unzip/CMakeLists.txt
Thomas Otto 00389c50ea Some more CMake white space formatting
- tabs to spaces
 - use Unix line endings everywhere
 - newline at end of file
 - remove trailing white space
 - no space between keywords and opening parenthesis
 - use 2 spaces to indent
2024-04-21 11:46:32 +02:00

22 lines
273 B
CMake

set(HEADERS
infblock.h
infcodes.h
inffast.h
inffixed.h
inftrees.h
infutil.h
zconf.h
zlib.h
zutil.h)
set(CPPS
unzip.cpp
adler32.c
infblock.c
infcodes.c
inffast.c
inflate.c
inftrees.c
infutil.c)
add_library(unzip STATIC ${HEADERS} ${CPPS})