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.
21 lines
425 B
21 lines
425 B
#ifndef MESON_DEP3_H |
|
#define MESON_DEP3_H |
|
|
|
#if !defined (MESON_TEST) |
|
#error "MESON_TEST not defined." |
|
#endif |
|
|
|
#include <glib-object.h> |
|
|
|
G_BEGIN_DECLS |
|
|
|
#define MESON_TYPE_DEP3 (meson_dep3_get_type()) |
|
|
|
G_DECLARE_FINAL_TYPE (MesonDep3, meson_dep3, MESON, DEP3, GObject) |
|
|
|
MesonDep3 *meson_dep3_new (const gchar *msg); |
|
const gchar *meson_dep3_return_message (MesonDep3 *self); |
|
|
|
G_END_DECLS |
|
|
|
#endif /* MESON_DEP3_H */
|
|
|