-
Clone this repository
$ git clone https://github.com/gpl27/milipede.git
-
Download and install MSYS2
-
Download and install CMake
-
Use CMake to generate Makefiles and compile the code
- Open CMake
- Specify the path of the "src" folder in the option "Where is the source code:"
- Create a folder named "build" and specify the path in the option "Where to build the binaries:"
- Select the option "Generate"
- Specify "MinGW Makefiles" for generator and select the default option
- Click Finish
- Set up the environment using Visual Studio Code
- Install the CMake Tools extension
- Search and click the button on the VS Code status bar where is written "No Kit Selected"
- Select the GCC Kit
- Build the project in Visual Studio Code
- Click on the "Build" button on the VS Code status bar
$ cd milipede
$ mkdir build
$ cd build
$ cmake ../src
$ cmake --build .