From 19da5988458efda6b79e10a3a5f35b117aac6e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Tue, 18 Sep 2018 18:52:29 +0200 Subject: [PATCH] Use a precompiled header for p7zip. That's the only way I am able to get the compiler found all the declarations it needs. --- compressed_archive/7z_precompiled_header.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 compressed_archive/7z_precompiled_header.h diff --git a/compressed_archive/7z_precompiled_header.h b/compressed_archive/7z_precompiled_header.h new file mode 100644 index 00000000..4bf5402e --- /dev/null +++ b/compressed_archive/7z_precompiled_header.h @@ -0,0 +1,10 @@ +#ifndef _7Z_PRECOMPILED_HEADER_H +#define _7Z_PRECOMPILED_HEADER_H + +#if defined __cplusplus + +#include "libp7zip/CPP/myWindows/StdAfx.h" + +#endif + +#endif // 7Z_PRECOMPILED_HEADER_H