Commit 4297b6b1 authored by liamy's avatar liamy
Browse files

nothing

No related merge requests found
Showing with 41 additions and 0 deletions
+41 -0
...@@ -29,6 +29,31 @@ ...@@ -29,6 +29,31 @@
], ],
"preLaunchTask": "build rmdb" "preLaunchTask": "build rmdb"
}, },
{
"name": "(gdb) Test Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/unit_test",
"args": ["liamDB"],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
],
"preLaunchTask": "build rmdb"
},
] ]
} }
\ No newline at end of file
rmdb/Makefile 0 → 100644
server:
rm -rf build
mkdir build
cd build
cmake ..
make rmdb -j4
cd ..
client:
cd rmdb_client
rm -rf build
mkdir build
cd build
cmake ..
make rmdb_client <-j4>|<-j8>
cd ..
cd ..
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment