mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
35 lines
552 B
CMake
35 lines
552 B
CMake
add_module( "lib" "libzlib" "" ${FOLDER_CONTEXT} TRUE TRUE )
|
|
|
|
add_sources( SOURCE_GROUP "Include"
|
|
"crc32.h"
|
|
"deflate.h"
|
|
"gzguts.h"
|
|
"inffast.h"
|
|
"inffixed.h"
|
|
"inflate.h"
|
|
"inftrees.h"
|
|
"trees.h"
|
|
"zconf.h"
|
|
"zlib.h"
|
|
"zutil.h"
|
|
)
|
|
|
|
add_sources( SOURCE_GROUP "Source"
|
|
"adler32.c"
|
|
"compress.c"
|
|
"crc32.c"
|
|
"deflate.c"
|
|
"infback.c"
|
|
"inffast.c"
|
|
"inflate.c"
|
|
"inftrees.c"
|
|
"trees.c"
|
|
"uncompr.c"
|
|
"zutil.c"
|
|
)
|
|
|
|
end_sources()
|
|
|
|
whole_program_optimization()
|
|
thirdparty_suppress_warnings()
|