You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by piwaneczko August 3, 2021
Generated files shall be always placed in build directory.
AC:
Header template file.h.in is created:
/* @FILE_H@ -- Compatibility layer shim
part of the minizip-ng project
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
*/
#ifndef @MZ_COMPAT_FILE@
#define @MZ_COMPAT_FILE@
#include "mz_compat.h"
#endif
You have forgot to add build directory to include_directories for target:
example target_include_directories(minizip PUBLIC ${minizip_BUILD_DIR})
Now unzip.h and zip.h cannot by found by other source.
I couldn't test it before
Discussed in https://github.com/zlib-ng/minizip-ng/discussions/587
Originally posted by piwaneczko August 3, 2021
Generated files shall be always placed in build directory.
AC:
The text was updated successfully, but these errors were encountered: