mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
04d0d95b8a
this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click.
19 lines
574 B
YAML
19 lines
574 B
YAML
tasks:
|
|
- before: >
|
|
brew install cmake ninja
|
|
init: >
|
|
mkdir -p /workspace/reactos/build &&
|
|
cd /workspace/reactos/build &&
|
|
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DGDB:BOOL=TRUE -DSEPARATE_DBG:BOOL=TRUE -D_WINKD_:BOOL=TRUE -DKDBG:BOOL=FALSE -DENABLE_ROSTESTS:BOOL=TRUE -DCMAKE_TOOLCHAIN_FILE=toolchain-gcc.cmake -G "Ninja" &&
|
|
ninja xdk psdk
|
|
command: >
|
|
cd /workspace/reactos/build &&
|
|
ninja all
|
|
|
|
image:
|
|
file: .gitpod.Dockerfile
|
|
|
|
vscode:
|
|
extensions:
|
|
- ms-vscode.cpptools@0.27.0-insiders3:Djj3Csw0GXjmueWAPWvTsg==
|