Skip to content

Build on Linux

modawan edited this page Mar 9, 2026 · 1 revision

How to build Reone on Linux

1. Install dependencies

Debian or Ubuntu

sudo apt install --no-install-recommends -y \
  git cmake build-essential g++ \
  libboost-all-dev libsdl2-dev libsdl3-dev libglew-dev libopenal-dev libmad0-dev libwxgtk3.2-dev libgmock-dev \
  libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev

2. Download repository reone

git clone https://github.com/modawan/reone

3. Run CMake

cd reone
cmake . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo

4. Build

cmake --build build -j8

5. Run launcher

cd build/bin
./launcher

Choose the KOTOR game directory, then "Save Configuration".

launcher window

6. Run engine

cd build/bin
./engine
engine window

Clone this wiki locally