From 6a7f4a402717dea23989196bedddd3e88eae2984 Mon Sep 17 00:00:00 2001 From: taotieren Date: Sat, 3 Apr 2021 11:31:23 +0800 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 601f609..1db64ef 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,24 @@ Only the first onces will be overwritten on further runs of proj2cmake. So it is This project is currently in an early state and may not work correctly for your Visual Studio projects. +## Build +```bash +git clone https://github.com/mrpi/proj2cmake.git +cd proj2cmake +# use cmake build +mkdir build && cd build && cmake .. && make +make install +# use Ninja build +mkdir build && cd build && cmake -G Ninja .. && ninja +ninja install +``` + +## Install +Arch Linux: +```bash +yay -S proj2cmake-git +``` + ## Usage Call proj2cmake with your solution file as the argument: ```