nautilus/test/meson.build
Ernestas Kulik 983892a656 build: general cleanups
This commit does the following:
  * Canonicalize the style:
    * Use two-space indentations.
    * Un-Autotools-ify option names.
    * Don’t align arguments, simply increase indentation.
    * Don’t add a space before opening parenthesis in calls.
  * Remove unused variables.
  * Remove unused dependencies.
  * Remove config.h.meson.
  * Optimize dependencies.
  * Use disabler functionality for libselinux dependency, to save lines.
2018-01-02 12:51:32 +02:00

28 lines
601 B
Meson

test_copy = executable(
'test-copy', [
'test-copy.c',
'test.c',
'test.h'
],
dependencies: libnautilus_dep
)
tests = [
['test-nautilus-search-engine', [
'test-nautilus-search-engine.c'
]],
['test-nautilus-directory-async', [
'test-nautilus-directory-async.c'
]],
['test-file-utilities-get-common-filename-prefix', [
'test-file-utilities-get-common-filename-prefix.c'
]],
['test-eel-string-get-common-prefix', [
'test-eel-string-get-common-prefix.c'
]]
]
foreach t: tests
test(t[0], executable(t[0], t[1], dependencies: libnautilus_dep))
endforeach