initial version

This commit is contained in:
2024-06-30 17:47:05 +02:00
commit 15144ca608
54 changed files with 2512 additions and 0 deletions

22
.gitpod.yml Normal file
View File

@@ -0,0 +1,22 @@
---
# Commands to start on workspace startup
image: stanka/gitpod-riscv-tools:latest
# file: .gitpod.Dockerfile
tasks:
- env:
CONAN_USER_HOME: "/workspace/conan"
init: |
python3 -m venv /workspace/venv
python3 -m pip install --upgrade pip
source /workspace/venv/bin/activate
pip install 'conan<2.0'
command: |
source /workspace/venv/bin/activate
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON
cmake --build build
vscode:
extensions:
- ms-python.python
- webfreak.debug
- twxs.cmake
- ms-vscode.cmake-tools