Skip to content

Instantly share code, notes, and snippets.

@jclosure
Last active January 21, 2025 18:24
Show Gist options
  • Save jclosure/c79b49371ccce3ff598c3ce5c84726b7 to your computer and use it in GitHub Desktop.
Save jclosure/c79b49371ccce3ff598c3ce5c84726b7 to your computer and use it in GitHub Desktop.
Building and running filament samples in MacOS

Building filament on MacOS

Prereqs

brew install cmake ninja pkg-config git

Build

With Unix Make:

git clone --recursive https://github.com/google/filament.git
cd filament
mkdir out
cd out
cmake ../ -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_SAMPLES=ON -DCMAKE_OSX_ARCHITECTURES=arm64
make -j

With Ninja:

git clone --recursive https://github.com/google/filament.git
cd filament
mkdir out
cd out
cmake ../ -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_SAMPLES=ON -DCMAKE_OSX_ARCHITECTURES=arm64
ninja

Run samples

# sample gltf loader and viewer
./samples/gltf_viewer

# sample animation
./samples/animation

# run with multiple backends
./samples/hellotriangle -a opengl
./samples/hellotriangle -a vulkan
./samples/hellotriangle -a metal

# there are lots more samples
ls ./samples

# explore how samples work and are layed out
tree ./samples

Debug builds

Build debuggable samples with builtin build.sh:

git clone --recursive https://github.com/google/filament.git
cd filament
./build.sh -p desktop debug gltf_viewer
./out/cmake-debug/samples/gltf_viewer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment