From a104b46b43178bbd48e0145b2a6758dbe8229316 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 28 Jun 2017 15:20:14 +0200 Subject: [PATCH] Update README --- .gitignore | 3 +++ README.md | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f805e81..b4a361a 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,6 @@ # Debug files *.dSYM/ *.su + +# Built files +build/ diff --git a/README.md b/README.md index 0868205..1655507 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,16 @@ chart library based on the EFL # compilation +It needs meson and ninja. + ## first time, no cross compilation: mkdir build && cd build && meson .. ninja -## first time, cross compilation (i686 with mingw-w64), in build: +## first time, cross compilation (i686 with mingw-w64 in this example), in build: -mkdir build && cd build && meson --cross-file ../cross_i686_w64_mingw32.txt .. +mkdir build && cd build && meson .. --cross-file ../cross_i686_w64_mingw32.txt ## after the first time, in build/: