83 lines
2.6 KiB
JSON
83 lines
2.6 KiB
JSON
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "C/C++: g++ build active file",
|
||
|
"command": "/usr/bin/g++",
|
||
|
"args": [
|
||
|
"-g",
|
||
|
"src/*.cpp",
|
||
|
"-o",
|
||
|
"${workspaceFolder}/bin/gtk42",
|
||
|
"-pthread",
|
||
|
//For Arm64 linux
|
||
|
/*
|
||
|
"-I/usr/lib/aarch64-linux-gnu/dbus-1.0/include",
|
||
|
"-I/usr/lib/aarch64-linux-gnu/glib-2.0/include",
|
||
|
*/
|
||
|
//For amd64 linux
|
||
|
/*
|
||
|
"-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include",
|
||
|
"-I/usr/lib/x86_64-linux-gnu/glib-2.0/include",
|
||
|
*/
|
||
|
//Ubuntu and kali include paths
|
||
|
/*
|
||
|
"-I/usr/include/uuid",
|
||
|
*/
|
||
|
//Manjaro linux and Arch linux include args
|
||
|
|
||
|
"-I${workspaceFolder}",
|
||
|
"-I/usr/lib/glib-2.0/include",
|
||
|
"-I/usr/lib/dbus-1.0/include",
|
||
|
"-I/usr/include/lzo",
|
||
|
"-I/usr/include/cloudproviders",
|
||
|
|
||
|
"-I/usr/include/gtk-3.0",
|
||
|
"-I/usr/include/at-spi2-atk/2.0",
|
||
|
"-I/usr/include/at-spi-2.0",
|
||
|
"-I/usr/include/dbus-1.0",
|
||
|
"-I/usr/include/gio-unix-2.0",
|
||
|
"-I/usr/include/cairo",
|
||
|
"-I/usr/include/pango-1.0",
|
||
|
"-I/usr/include/fribidi",
|
||
|
"-I/usr/include/harfbuzz",
|
||
|
"-I/usr/include/atk-1.0",
|
||
|
"-I/usr/include/pixman-1",
|
||
|
"-I/usr/include/freetype2",
|
||
|
"-I/usr/include/libpng16",
|
||
|
"-I/usr/include/gdk-pixbuf-2.0",
|
||
|
"-I/usr/include/libmount",
|
||
|
"-I/usr/include/blkid",
|
||
|
"-I/usr/include/glib-2.0",
|
||
|
//Manjaro linux lib args
|
||
|
"-lz",
|
||
|
|
||
|
"-lgtk-3",
|
||
|
"-lgdk-3",
|
||
|
"-lpangocairo-1.0",
|
||
|
"-lpango-1.0",
|
||
|
"-lharfbuzz",
|
||
|
"-latk-1.0",
|
||
|
"-lcairo-gobject",
|
||
|
"-lcairo",
|
||
|
"-lgdk_pixbuf-2.0",
|
||
|
"-lgio-2.0",
|
||
|
"-lgobject-2.0",
|
||
|
"-lglib-2.0",
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"detail": "Task generated by Debugger."
|
||
|
}
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|