14 lines
283 B
YAML
14 lines
283 B
YAML
services:
|
|
dawn-psp:
|
|
build: .
|
|
volumes:
|
|
- ./../../:/Dawn
|
|
working_dir: /Dawn
|
|
command:
|
|
- /bin/bash
|
|
- -c
|
|
- |
|
|
mkdir -p ./build/psp
|
|
cd ./build/psp
|
|
psp-cmake ../.. -DDAWN_BUILD_SYSTEM=psp -DCMAKE_BUILD_TYPE=Debug
|
|
make |