diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index ba46fee..25b5487 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -47,7 +47,6 @@ "/usr/include/cairo", "/usr/include/freetype2", "/usr/include/atkmm-1.6", - "/usr/include/gconfmm-2.6", "/usr/include/glib-2.0", "/usr/lib/glib-2.0/include" ], @@ -80,7 +79,6 @@ "/usr/include/cairo", "/usr/include/freetype2", "/usr/include/atkmm-1.6", - "/usr/include/gconfmm-2.6", "/usr/include/glib-2.0", "/usr/lib/glib-2.0/include" ], diff --git a/src/Makefile b/src/Makefile index 593110e..44f0ddc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ NAME=Visor -GTKFLAGS=`pkg-config gtkmm-3.0 cairo --cflags --libs gconfmm-2.6` +GTKFLAGS=`pkg-config gtkmm-3.0 cairo --cflags --libs` MAGIC=-lstdc++fs SRC=main.cpp window.cpp device.cpp tree.cpp graph.cpp legend.cpp CFLAGS=-std=c++14 -g -Wall -o $(NAME) diff --git a/src/window.h b/src/window.h index 7845354..3731446 100644 --- a/src/window.h +++ b/src/window.h @@ -4,7 +4,6 @@ #include "graph.h" #include "legend.h" #include "tree.h" -#include #include #include #include