Added vscode config.

This commit is contained in:
ravinsp
2021-12-24 13:35:12 +05:30
parent 8dabfb4a2e
commit 2d4cebb37e
4 changed files with 18 additions and 3 deletions

1
.gitignore vendored
View File

@@ -5,7 +5,6 @@
.DS_Store
build
hpcore.dir
.vscode
**/Makefile
**/CMakeCache.txt
**/cmake_install.cmake

16
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

View File

@@ -15,7 +15,7 @@ A C++ version of hotpocket designed for production envrionments, original protot
* Boost Stacktrace - https://www.boost.org
## Setting up Hot Pocket development environment
Run the setup script located at the repo root (tested on Ubuntu 18.04).
Run the setup script located at the repo root (tested on Ubuntu 20.04).
```
./dev-setup.sh
```

View File

@@ -96,7 +96,7 @@ sudo apt-get install -y jq
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
# ncc build utility for nodejs compiled builds.
npm i -g @vercel/ncc
sudo npm i -g @vercel/ncc
# Update linker library cache.
sudo ldconfig