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.
24 lines
492 B
24 lines
492 B
8 years ago
|
#ifndef MESON_DEP1_H
|
||
|
#define MESON_DEP1_H
|
||
|
|
||
|
#if !defined (MESON_TEST)
|
||
|
#error "MESON_TEST not defined."
|
||
|
#endif
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
#include "dep2/dep2.h"
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
#define MESON_TYPE_DEP1 (meson_dep1_get_type())
|
||
|
|
||
|
G_DECLARE_FINAL_TYPE (MesonDep1, meson_dep1, MESON, DEP1, GObject)
|
||
|
|
||
|
MesonDep1 *meson_dep1_new (void);
|
||
|
MesonDep2 *meson_dep1_just_return_it (MesonDep1 *self,
|
||
|
MesonDep2 *dep);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|
||
|
#endif /* MESON_DEP1_H */
|