From 509b997254e36f2ddb9f036df10dec6a1e7e6453 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Tue, 30 Mar 2021 15:04:31 +0300 Subject: [PATCH 35/38] meson-winbuild.sh: Store fc_config.h and crosser conf files to output package See osdn #41882 Signed-off-by: Marko Lindqvist --- windows/installer_cross/meson-winbuild.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/windows/installer_cross/meson-winbuild.sh b/windows/installer_cross/meson-winbuild.sh index 47b09fb05b..ac790fda4b 100755 --- a/windows/installer_cross/meson-winbuild.sh +++ b/windows/installer_cross/meson-winbuild.sh @@ -105,6 +105,22 @@ if ! ninja install; then exit 1 fi +if ! cp fc_config.h ${MESON_INSTALL_DIR}/share/freeciv/ ; then + echo "Storing fc_config.h failed" >&2 + exit 1 +fi + +if ! cp ${DLLSPATH}/crosser.txt ${MESON_INSTALL_DIR}/share/freeciv/ ; then + echo "Storing crosser.txt failed" >&2 + exit 1 +fi + +if ! cp ${DLLSPATH}/ComponentVersions.txt ${MESON_INSTALL_DIR}/share/freeciv/CrosserComponents.txt +then + echo "Storing CrosserComponents.txt failed" >&2 + exit 1 +fi + ) then exit 1 fi -- 2.30.2