-
Notifications
You must be signed in to change notification settings - Fork 224
Compiling on Windows
Womos edited this page Jan 20, 2024
·
15 revisions
https://visualstudio.microsoft.com/vs/
- Start Git Bash
- Go to root directory
cd /c
- Clone vcpkg
git clone https://github.com/Microsoft/vcpkg
- Enter the directory
cd vcpkg
- Run bootstrap
./bootstrap-vcpkg.bat
- Choose 32 or 64 bit or both. This will take some time so be patient.
- 32 bit:
./vcpkg install wxwidgets freeglut asio nlohmann-json fmt
- 64 bit:
./vcpkg install --triplet x64-windows wxwidgets freeglut asio nlohmann-json fmt
- 32 bit:
- Make libraries available to Visual Studio
./vcpkg integrate install
- Create and enter the directory where you want the sources
cd /c
mkdir developer
cd developer
- Clone RME
git clone https://github.com/hampusborgos/rme.git
- Open
C:\developer\rme\vcproj\RME.sln
in Visual Studio - Choose Debug or Release and Win32 or x64 in the toolbar
- Press F5 to start debugging