summaryrefslogtreecommitdiffstats
blob: 89fc31b631fd7f3a4f29a8f7b6f51c2bad5f3184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Import("swiftools_env")

sources = [
		"Notifier.cpp",
	]

if swiftools_env.get("HAVE_GROWL", False) :
	sources += [
			"GrowlNotifier.cpp",
		]

objects = swiftools_env.StaticObject(sources)
swiftools_env.Append(SWIFTOOLS_OBJECTS = objects)