Skip to content

A Fantasy Console intended as a tool for pixel art game development.

License

Notifications You must be signed in to change notification settings

emmachase/Riko4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5135997 · Mar 16, 2025
Nov 5, 2023
Mar 15, 2025
Mar 16, 2025
Mar 3, 2025
Mar 13, 2025
Jan 31, 2018
Mar 4, 2025
Aug 24, 2018
Jul 24, 2020
Mar 3, 2025
Mar 3, 2025
Apr 30, 2021
Mar 3, 2025
Dec 28, 2018
Nov 3, 2018
Jul 30, 2018
Aug 16, 2018
Mar 3, 2025
Mar 3, 2025

Repository files navigation

Riko4 Build Status

A fantasy computer / game engine

Build Instructions with vcpkg:

# First, set up vcpkg if you haven't already
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh  # On Linux/macOS
# OR
.\bootstrap-vcpkg.bat  # On Windows

# Clone Riko4 and build
git clone https://github.com/emmachase/riko4
cd riko4
mkdir build
cp -r scripts build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=[path to vcpkg]/scripts/buildsystems/vcpkg.cmake
cmake --build .

Alternatively, create a CMakeUserPresets.json:

{
    "version": 2,
    "configurePresets": [
        {
            "name": "default",
            "inherits": "vcpkg",
            "generator": "Unix Makefiles", // Or your preferred Generator
            "environment": {
                "VCPKG_ROOT": "C:/code/vcpkg"
            }
        }
    ]
}

Then:

cmake .. --preset default
cmake --build .

Screenshots: Hello World Shell Code Editor Image/Spritesheet Editor Isola Game Minesweeper