From 6b7db4c021c9302030d4818a52f10275ed6c2dd4 Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Tue, 28 Mar 2023 16:26:45 +0200 Subject: [PATCH] fix windows examples --- INSTALL.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 4babccb..5162e70 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -65,18 +65,18 @@ Unfortunately, the cmp\_tool does not support the Microsoft MSVC compiler. To bu For this, you need the [Mingw-w64 toolchain](https://www.mingw-w64.org/downloads/). To compile on Windows, do this in the Cygwin64 Terminal: ``` -meson setup buiddir_win --native-file=mingw-w64-64.txt -cd buiddir_win -meson compile +meson setup builddir_win --native-file=mingw-w64-64.txt +cd builddir_win +meson compile cmp_tool ``` ### Cross-compile for Windows Cross-compile for Windows is also possible with the [Mingw-w64 toolchain](https://www.mingw-w64.org/downloads/). To cross-compile for Windows use the following commands: ``` -meson setup buiddir_cross_win --cross-file=mingw-w64-64.txt -cd buiddir_cross_win -meson compile +meson setup builddir_cross_win --cross-file=mingw-w64-64.txt +cd builddir_cross_win +meson compile cmp_tool ``` ## Tests -- GitLab