Skip to content

Compiling on Windows

Elime1 edited this page Jan 19, 2020 · 15 revisions

Install Visual Studio (VS 2019 community or later)

https://visualstudio.microsoft.com/vs/

Install Git Bash

https://gitforwindows.org/

Install vcpkg

  • Run Git Bash
  • Go to root directory cd /c
  • Clone vspkg git clone https://github.com/Microsoft/vcpkg
  • Enter the folder cd vcpkg
  • Run bootstrap ./bootstrap-vcpkg.bat

Install dependencies

  • Run ./vcpkg install wxwidgets:x64-windows boost:x64-windows libarchive:x64-windows
  • Make libraris available to Visual Studio vcpkg integrate install

Clone project

  • Create and enter the directory where you want the sources mkdir /c/developer && cd /c/developer
  • Clone RME git clone https://github.com/hjnilsson/rme.git

Build

  • Open C:\developer\rme\vcproj\RME.sln in Visual Studio
  • Choose Debug/Release and x64
  • Press F5 to start debugging
Clone this wiki locally