summaryrefslogtreecommitdiff
path: root/tests/gdimagefile
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-04-30 15:52:30 -0400
committerMike Frysinger <vapier@gentoo.org>2016-04-30 15:52:30 -0400
commit3b0eabf71d6fc678ef0d8d04da9810d9160cce09 (patch)
treeff16ea636be17c7b4dd61c9b383dfa4bb21d776d /tests/gdimagefile
parent4c6a07b263243cfbe4d9f81f9590c8c1d0c1dc43 (diff)
downloadlibgd-3b0eabf71d6fc678ef0d8d04da9810d9160cce09.tar.gz
tests: add missing cmake files gdimagefile/gdimagefilter
Diffstat (limited to 'tests/gdimagefile')
-rw-r--r--tests/gdimagefile/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/gdimagefile/CMakeLists.txt b/tests/gdimagefile/CMakeLists.txt
new file mode 100644
index 0000000..444a9fa
--- /dev/null
+++ b/tests/gdimagefile/CMakeLists.txt
@@ -0,0 +1,9 @@
+
+SET(TESTS_FILES
+ gdnametest
+)
+FOREACH(test_name ${TESTS_FILES})
+ add_executable(${test_name} "${test_name}.c")
+ target_link_libraries (${test_name} gdTest)
+ add_test(NAME ${test_name} COMMAND ${test_name})
+ENDFOREACH(test_name)