コード例 #1
0
ファイル: gimptool.c プロジェクト: MichaelMure/Gimp-Cage-Tool
static void
do_uninstall_bin (const gchar *what)
{
  do_uninstall (get_user_plugin_dir (FALSE), maybe_append_exe (what));
}
コード例 #2
0
ファイル: gimptool.c プロジェクト: MichaelMure/Gimp-Cage-Tool
static void
do_install_noui (const gchar *what)
{
  do_build_2 (get_cflags_noui (), get_libs_noui (), get_user_plugin_dir (FALSE), what);
}
コード例 #3
0
ファイル: gimptool.c プロジェクト: MichaelMure/Gimp-Cage-Tool
static void
do_install_bin (const gchar *what)
{
  do_install_bin_2 (get_user_plugin_dir (FALSE), what);
}
コード例 #4
0
ファイル: gimptool.c プロジェクト: AdamGrzonkowski/gimp-1
static void
do_install (const gchar *what)
{
  do_build_2 (get_cflags (), get_libs (), get_user_plugin_dir (), what);
}