extract explicit mesh with topology information from implicit surfaces with boolean operations, and do surface/volume integrating on them.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB

5 months ago
{
"version": "2.0.0",
"windows": {
"options": {
"shell": {
"executable": "C:\\WINDOWS\\System32\\cmd.exe",
"args": [
"/C",
"D:\\download\\IntelOneAPI\\2025.0\\oneapi-vars.bat",
5 months ago
"&&",
]
}
}
},
"tasks": [
{
"label": "configure-release",
"type": "shell",
"command": "xmake config -p windows -m release",
"problemMatcher": []
},
{
"label": "configure-debug",
"type": "shell",
"command": "xmake config -p windows -m debug",
"problemMatcher": []
},
{
"label": "build",
"type": "shell",
"command": "xmake",
"args": [
// "-v",
"-j8"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
5 months ago
{
"label": "update compile_commands",
"type": "shell",
"command": "xmake project -k compile_commands .vscode",
"problemMatcher": []
5 months ago
},
{
"label": "debug frontend application",
"type": "shell",
"command": "xmake run -d implicit_surface_integrator",
"problemMatcher": []
},
5 months ago
]
}