I'm trying to compile a C file with GCC. This file has the following dependencies:
#include <glib-object.h>
#include <thrift/c_glib/thrift.h>
#include <thrift/c_glib/protocol/thrift_binary_protocol.h>
#include <thrift/c_glib/transport/thrift_buffered_transport.h>
#include <thrift/c_glib/transport/thrift_socket.h>
I've installed the libthrift-c-glib-dev package for Debian and then I've tried to compile the file with gcc but the compiler doesn't find the dependencies What are the steps I have to do in order to be able to compile this file?