From f8a3e3592086857a887d8f84050781a6a2509d22 Mon Sep 17 00:00:00 2001 From: Hui Wang Date: Tue, 15 Feb 2022 17:53:07 +0800 Subject: [PATCH] update readme, add clion+vs build instruction --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 85951fc..780c568 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ $ make These steps (1) create an out-of-source build directory, (2) configure the project using CMake, and (3) compile the project. If all goes well, you should see an executable `drawsvg` in the build directory. As you work, simply typing `make` in the build directory will recompile the project. -#### Windows Build Instructions using Visual Studio +#### Windows Build Instructions using Visual Studio (Recommended) We have a beta build support for Windows systems. You need to install the latest version of [CMake](http://www.cmake.org/) and install [Visual Studio Community](https://visualstudio.microsoft.com/vs/). After installing these programs, you can run `runcmake_win.bat` by double-clicking on it. This should create a `build` directory with a Visual Studio solution file in it named `drawsvg.sln`. You can double-click this file to open the solution in Visual Studio. @@ -60,19 +60,21 @@ If you plan on using Visual Studio to debug your program, you can change `drawsv If you feel that your program is running slowly, you can also change the build mode to `Release` from `Debug` by clicking the Solution Configurations drop down menu on the top menu bar. Note that you will have to set `Command Arguments` again if you change the build mode. - +Now you should be able to click on the green run button on top right to run the project. ### Using the Mini-SVG Viewer App -- GitLab