From d46ebc19c8b895f3d4fe92537db22b97a6ad7a7b Mon Sep 17 00:00:00 2001 From: marouault Date: Mon, 7 Mar 2022 08:02:51 +0000 Subject: [PATCH] Update README.md --- README.md | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 4926cad..626ab96 100644 --- a/README.md +++ b/README.md @@ -22,33 +22,20 @@ Nous développerons successivement les versions suivantes : ## Comment télécharger, compiler et executer Pontu -### Sur Linux: +Utiliser l'option -DCMAKE_BUILD_TYPE=Debug pour build en debug + -DCMAKE_BUILD_TYPE=Release pour build en release ```BASH git clone [urlToThisRepo] cd [thisRepo]/Pontu git submodule init git submodule update -mkdir bin +mkdir bin #ou un autre nom de fichier comme "build_debug" ou "build_release" cd bin cmake .. -make +make # ou mingw32-make avec Mingw cd .. #Se mettre dans le dossier Pontu ./bin/Pontu ``` -### Sur Windows: - -```BASH -git clone [urlToThisRepo] -cd [thisRepo]/Pontu -git submodule init -git submodule update -mkdir bin -cd bin -cmake .. -mingw32-make -cd .. #Se mettre dans le dossier Pontu -./bin/Pontu.exe -```