summaryrefslogtreecommitdiff
path: root/src/analysis/project.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/project.h')
-rw-r--r--src/analysis/project.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/analysis/project.h b/src/analysis/project.h
index e8c6365..a5b1a73 100644
--- a/src/analysis/project.h
+++ b/src/analysis/project.h
@@ -25,7 +25,9 @@
#define _ANALYSIS_PROJECT_H
-#include <gtk/gtk.h>
+#ifdef INCLUDE_GTK_SUPPORT
+# include <gtk/gtk.h>
+#endif
#include "loaded.h"
@@ -115,12 +117,16 @@ GLoadedContent **g_study_project_get_contents(GStudyProject *, size_t *);
/* ------------------------- GESTION GLOBALISEE DES PROJETS ------------------------- */
+#ifdef INCLUDE_GTK_SUPPORT
+
/* Fournit le gestionnaire des projets connus. */
GtkRecentManager *get_project_manager(void);
/* Place un projet au sommet de la pile des projets récents. */
void push_project_into_recent_list(const GStudyProject *);
+#endif
+
#endif /* _PROJECT_H */