* refactoring: split src/ into mu/ and lib/
This commit is contained in:
@ -18,7 +18,7 @@ include $(top_srcdir)/gtest.mk
|
||||
|
||||
# enforce compiling this dir first before decending into tests/
|
||||
SUBDIRS= .
|
||||
INCLUDES=-I${top_srcdir}/src $(GTK_CFLAGS) $(WEBKIT_CFLAGS) $(GIO_CFLAGS) -DICONDIR='"$(icondir)"' \
|
||||
INCLUDES=-I${top_srcdir}/lib $(GTK_CFLAGS) $(WEBKIT_CFLAGS) $(GIO_CFLAGS) -DICONDIR='"$(icondir)"' \
|
||||
-DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE
|
||||
|
||||
# don't use -Werror, as it might break on other compilers
|
||||
@ -43,8 +43,7 @@ libmuwidgets_la_SOURCES= \
|
||||
mu-msg-view.c
|
||||
|
||||
libmuwidgets_la_LIBADD= \
|
||||
${top_builddir}/src/libmu.la \
|
||||
${top_builddir}/lib/libmu.la \
|
||||
${GTK_LIBS} \
|
||||
${WEBKIT_LIBS} \
|
||||
${GIO_LIBS}
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
|
||||
#include "mu-msg-attach-view.h"
|
||||
#include "mu-widget-util.h"
|
||||
#include <mu-msg-part.h>
|
||||
#include <lib/mu-msg-part.h>
|
||||
|
||||
enum {
|
||||
ICON_COL,
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
#define __MU_MSG_ATTACH_VIEW_H__
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include <mu-msg.h>
|
||||
#include <lib/mu-msg.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@ -65,4 +65,3 @@ int mu_msg_attach_view_set_message (MuMsgAttachView *self, MuMsg *msg);
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __MU_MSG_ATTACH_VIEW_H__ */
|
||||
|
||||
|
||||
@ -19,8 +19,8 @@
|
||||
|
||||
#include "mu-msg-header-view.h"
|
||||
|
||||
#include <mu-str.h>
|
||||
#include <mu-date.h>
|
||||
#include <lib/mu-str.h>
|
||||
#include <lib/mu-date.h>
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
#include "mu-msg-body-view.h"
|
||||
#include "mu-msg-header-view.h"
|
||||
#include "mu-msg-attach-view.h"
|
||||
#include "mu-msg-part.h"
|
||||
#include <lib/mu-msg-part.h>
|
||||
|
||||
|
||||
/* 'private'/'protected' functions */
|
||||
|
||||
Reference in New Issue
Block a user