Lysa  0.0
Lysa 3D Engine
Development environment

All platforms

The Vulkan SDK is required on all platforms.

Refers to Integration for tools and dependencies to install.

Engine path

The project locates the engine and RHI through a .env.cmake file at the project root:

set(LYSA_ENGINE_PROJECT_DIR "path/to/the/cloned/lysa_engine")
set(VIREO_RHI_PROJECT_DIR "path/to/the/cloned/vireo_rhi")

Build commands

cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build build --target myapp

The executable must be run from the project root directory so that the app:// virtual filesystem resolves app://shaders and app://res correctly.

./build/myapp # Linux
build\myapp.exe # Windows

Next : Project layout