diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-10-01 07:17:16 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-10-01 07:17:16 +0200 |
commit | 71137cc5832110d91599d68790402cf196762ed3 (patch) | |
tree | e7985bbfb6ca50ea738b38a9f852ee51431d48a7 /src/meson.build | |
parent | 8ae550d463720d5d1c0e253af29843ff15de1a54 (diff) | |
parent | 1e92964463e564bb3359a7110342182fcfdc67f2 (diff) |
Merge branch 'release/debian/0.30.1-1'debian/0.30.1-1
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/meson.build b/src/meson.build index ba260e7..c452a98 100644 --- a/src/meson.build +++ b/src/meson.build @@ -17,13 +17,25 @@ processor = executable('shotwell-graphics-processor', dependencies: [gio, gdk, gee], link_with: sw_graphics_processor) +face_sources = [] +if get_option('face-detection') + face_sources = (['faces/FacesBranch.vala', + 'faces/FaceLocation.vala', + 'faces/FacePage.vala', + 'faces/FaceShape.vala', + 'faces/Faces.vala', + 'faces/Face.vala', + 'db/FaceLocationTable.vala', + 'db/FaceTable.vala', + 'faces/FacesTool.vala']) +endif + shotwell_deps = [gio, gee, sqlite, gtk, sqlite, posix, gphoto2, gstreamer_pbu, gio_unix, gudev, gexiv2, gmodule, libraw, libexif, sw_plugin] if unity_available shotwell_deps += [unity] endif - executable('shotwell', ['unit/Unit.vala', 'util/Util.vala', @@ -58,6 +70,7 @@ executable('shotwell', 'photos/PhotoMetadata.vala', 'photos/GRaw.vala', 'photos/GdkSupport.vala', + 'photos/GifSupport.vala', 'photos/JfifSupport.vala', 'photos/BmpSupport.vala', 'photos/RawSupport.vala', @@ -141,6 +154,8 @@ executable('shotwell', 'folders/Folders.vala', 'folders/FoldersBranch.vala', 'folders/FoldersPage.vala', + 'import-roll/ImportRollBranch.vala', + 'import-roll/ImportRollEntry.vala', 'main.vala', 'AppWindow.vala', 'CollectionPage.vala', @@ -223,7 +238,7 @@ executable('shotwell', '.unitize/_DataImportsInternals.vala', '.unitize/_FoldersInternals.vala', '.unitize/_Library_unitize_entry.vala', - '.unitize/_Direct_unitize_entry.vala'] + shotwell_resources, + '.unitize/_Direct_unitize_entry.vala'] + shotwell_resources + face_sources, include_directories : vapi_incdir, dependencies : shotwell_deps, vala_args : ['--pkg', 'libgphoto2', |