1# vim: set filetype=python:
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this
4# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
6SOURCES = [
7    "GetMetadataForFile.c",
8    "main.c",
9]
10
11Program("thunderbird-mdimport")
12# This directory is producing a framework as a target. The output of this
13# framework will be located here.
14FINAL_TARGET = "dist/package/thunderbird.mdimporter/Contents/MacOS"
15
16OS_LIBS += [
17    "-framework CoreFoundation",
18    "-framework CoreServices",
19]
20
21# We're also a bundle.
22LDFLAGS += ["-bundle"]
23