The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
425 B
22 lines
425 B
8 years ago
|
#ifndef MESON_DEP2_H
|
||
|
#define MESON_DEP2_H
|
||
|
|
||
|
#if !defined (MESON_TEST)
|
||
|
#error "MESON_TEST not defined."
|
||
|
#endif
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
#define MESON_TYPE_DEP2 (meson_dep2_get_type())
|
||
|
|
||
|
G_DECLARE_FINAL_TYPE (MesonDep2, meson_dep2, MESON, DEP2, GObject)
|
||
|
|
||
|
MesonDep2 *meson_dep2_new (const gchar *msg);
|
||
|
const gchar *meson_dep2_return_message (MesonDep2 *self);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|
||
|
#endif /* MESON_DEP2_H */
|