Initial commit

This commit is contained in:
Jorijn van der Graaf 2025-01-02 02:48:44 +01:00
commit 2798e9567e
11 changed files with 363 additions and 0 deletions

22
sample/project.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "sample-project",
"configurations": [
{
"name": "debug",
"standard": "c++26",
"source_files": ["main"],
"module_files": [],
"build_dir": "./build",
"output_dir": "./bin",
"optimization_level": "0",
"target": "wasm32-unknown-wasi",
"type": "executable",
"dependencies": [
{
"path":"../project.json",
"configuration":"debug"
}
]
}
]
}