18 lines
448 B
YAML
18 lines
448 B
YAML
services:
|
|
dawn-linux64:
|
|
build: .
|
|
volumes:
|
|
- ./../../:/Dawn
|
|
working_dir: /Dawn
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
ln -s /usr/bin/python3 /usr/bin/python
|
|
if [ ! -d ./lib/glfw ]; then
|
|
git submodule update --init
|
|
fi
|
|
mkdir -p ./build/linux-x64
|
|
cd ./build/linux-x64
|
|
cmake ../.. -DDAWN_BUILD_SYSTEM=linux -DGLFW_BUILD_X11=ON -DGLFW_BUILD_WAYLAND=OFF
|
|
make |