diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-30 14:11:00 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-30 14:11:00 +0200 |
commit | 0ac947a9070322180e94d1b71e30836cce4d74bc (patch) | |
tree | 4a6f3923c250377536a5004ed203768111a1d27f /src/AppDirs.vala | |
parent | eca5837e235a356c8db9416bbbc13577db3e6f76 (diff) | |
parent | 01b2b5ec9177046f64c6d0a6e73a6ac8a42089a1 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/AppDirs.vala')
-rw-r--r-- | src/AppDirs.vala | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/AppDirs.vala b/src/AppDirs.vala index ffea859..74b045f 100644 --- a/src/AppDirs.vala +++ b/src/AppDirs.vala @@ -258,6 +258,15 @@ class AppDirs { return subdir; } +#if ENABLE_FACES + public static File get_resources_dir() { + File? install_dir = get_install_dir(); + + return (install_dir != null) ? install_dir.get_child("share").get_child("shotwell") + : get_exec_dir(); + } +#endif + public static File get_lib_dir() { File? install_dir = get_install_dir(); @@ -302,6 +311,11 @@ class AppDirs { // If we're running installed. f = AppDirs.get_libexec_dir () .get_child ("shotwell").get_child (filename); } + + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_parent().get_child("thumbnailer").get_child(filename); + } + return f; } @@ -314,5 +328,25 @@ class AppDirs { } return f; } + +#if ENABLE_FACES + public static File get_facedetect_bin() { + const string filename = "shotwell-facedetect"; + File f = AppDirs.get_libexec_dir().get_parent().get_child("facedetect").get_child (filename); + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_child("shotwell").get_child(filename); + } + return f; + } + + public static File get_haarcascade_file() { + File f = File.new_for_path(AppDirs.get_exec_dir().get_parent().get_parent().get_child("facedetect").get_child("facedetect-haarcascade.xml").get_path()); + if (f.query_exists()) {//testing meson builddir + return f; + } + return get_resources_dir().get_child("facedetect-haarcascade.xml"); + } +#endif + } |