fixed build issues

This commit is contained in:
2025-07-20 17:03:42 -05:00
parent 1c365dd6f9
commit 9b041b95e2
3 changed files with 61 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "Signal Server C/C++ Development",
"dockerFile": "../Dockerfile",
"workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools-extension-pack",
"ms-vscode.cmake-tools",
"xaver.clang-format",
"ms-vscode.makefile-tools"
],
"settings": {
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.compilerPath": "/usr/bin/g++",
"C_Cpp.default.intelliSenseMode": "linux-gcc-x64"
}
}
},
"postCreateCommand": "cd src && make clean",
"remoteUser": "root"
}