RJVB / afsctool

This is a version of "brkirch"'s afsctool utility that allows end-users to leverage HFS+ compression.
https://brkirch.wordpress.com/afsctool
GNU General Public License v3.0
187 stars 18 forks source link

Fix ZLIB_SINGLESHOT option #60

Closed Dr-Emann closed 1 year ago

Dr-Emann commented 1 year ago

cmake's add_definitions just adds arguments to the compiler directly (despite its name), so it needs the -D prefix, as is used for e.g. add_definitions(-DHAS_LZVN)

RJVB commented 1 year ago

Thanks!