Initial commit
This commit is contained in:
commit
2798e9567e
11 changed files with 363 additions and 0 deletions
26
project.json
Normal file
26
project.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "crafter-web",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "base",
|
||||
"standard": "c++26",
|
||||
"source_files": ["Crafter.Web-HtmlElement"],
|
||||
"module_files": ["Crafter.Web-HtmlElement", "Crafter.Web"],
|
||||
"additional_files": ["Crafter.Web.js"],
|
||||
"build_dir": "./build",
|
||||
"output_dir": "./bin",
|
||||
"type":"library",
|
||||
"target":"wasm32-unknown-wasi"
|
||||
},
|
||||
{
|
||||
"name": "debug",
|
||||
"extends": ["base"],
|
||||
"optimization_level": "0"
|
||||
},
|
||||
{
|
||||
"name": "release",
|
||||
"extends": ["base"],
|
||||
"optimization_level": "3"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue