Skip to content

A multithreaded, high performance, Vulkan RaaL (Renderer as a Library) written in C++. 🐉

License

Notifications You must be signed in to change notification settings

sparky-game/longwang

Longwang Logo
Longwang (龍王)

Vulkan RaaL (Renderer as a Library)

Buy Me A Coffee

License C++ Standard Size Release Blazing Speed

(…)

Longwang is free software: you can redistribute it and/or modify it under the terms of the BSD 3-Clause “New” or “Revised” License as published by The Regents of the University of California.
Longwang is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD 3-Clause “New” or “Revised” License for more details.
You should have received a copy of the BSD 3-Clause “New” or “Revised” License along with Longwang. If not, see https://opensource.org/license/BSD-3-Clause.

Table of Contents

Usage

(…)

Build from source

(…)

mkdir -p build
for i in src/*.cc; do
  g++ -I include -std=c++20 -Wall -Wextra -pedantic -Werror -c $i -o "build/$(basename ${i%.cc}).o"
done
ar -rc liblongwang.a build/*.o