aboutsummaryrefslogtreecommitdiff
path: root/.gitpod.yml
blob: 536301d5904a40495e2f727a31b5a82f12fb58fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
tasks:
  - name: vcpkg
    env:
      VCPKG_INSTALLATION_ROOT: /opt/vcpkg
    init: |
      sudo apt-get install ninja-build
      git clone https://github.com/Microsoft/vcpkg.git /tmp/vcpkg
      /tmp/vcpkg/bootstrap-vcpkg.sh
      /tmp/vcpkg/vcpkg install

vscode:
  extensions:
    - "llvm-vs-code-extensions.vscode-clangd"
    - "ms-vscode.cmake-tools"
    - "wayou.vscode-todo-highlight"