コード例 #1
0
ファイル: glib2.py プロジェクト: ECSE437-Audacity/audacity
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
ファイル: glib2.py プロジェクト: adeepkit01/networks
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
ファイル: glib2.py プロジェクト: adambde/bde-tools
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)