From c726d974ed599496b07f03d9f96764caf959e93f Mon Sep 17 00:00:00 2001 From: Dylan Stephano-Shachter Date: Tue, 23 Feb 2021 11:24:51 -0500 Subject: [PATCH] update linux instructions in README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5233665d5..bc5128adb 100644 --- a/README.md +++ b/README.md @@ -66,9 +66,17 @@ sudo apt install libboost-dev libwxgtk3.0-gtk3-dev libhunspell-dev ```` Then use cmake to build ```` -cmake build -DCMAKE_BUILD_TYPE=Release -cmake --build build +mkdir build +cd build +cmake .. +make +```` +Before running you must copy the resource directory +```` +mkdir ~/.magicseteditor +cp -r resource ~/.magicseteditor/ ```` +Then you need to get data files. The most commonly used data files can be found [here](https://github.com/CajunAvenger/Cajun-Style-Templates/) Use `CMAKE_BUILD_TYPE=Debug` for a debug build ## Building on Mac