示例#1
0
def configure(conf):
    """
	Finds the following programs:

	* *glib-genmarshal* and set *GLIB_GENMARSHAL*
	* *glib-mkenums* and set *GLIB_MKENUMS*
	* *glib-compile-schemas* and set *GLIB_COMPILE_SCHEMAS* (not mandatory)
	* *glib-compile-resources* and set *GLIB_COMPILE_RESOURCES* (not mandatory)
	"""
    conf.find_glib_genmarshal()
    conf.find_glib_mkenums()
    conf.find_glib_compile_schemas(mandatory=False)
    conf.find_glib_compile_resources(mandatory=False)
示例#2
0
文件: glib2.py 项目: Tiksagol/waf
def configure(conf):
	"""
	Finds the following programs:

	* *glib-genmarshal* and set *GLIB_GENMARSHAL*
	* *glib-mkenums* and set *GLIB_MKENUMS*
	* *glib-compile-schemas* and set *GLIB_COMPILE_SCHEMAS* (not mandatory)
	* *glib-compile-resources* and set *GLIB_COMPILE_RESOURCES* (not mandatory)
	"""
	conf.find_glib_genmarshal()
	conf.find_glib_mkenums()
	conf.find_glib_compile_schemas(mandatory=False)
	conf.find_glib_compile_resources(mandatory=False)
示例#3
0
def configure(conf):
    conf.find_glib_genmarshal()
    conf.find_glib_mkenums()
    conf.find_glib_compile_schemas(mandatory=False)
    conf.find_glib_compile_resources(mandatory=False)
示例#4
0
def configure(conf):
	conf.find_glib_genmarshal()
	conf.find_glib_mkenums()
	conf.find_glib_compile_schemas(mandatory=False)
	conf.find_glib_compile_resources(mandatory=False)