summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.0/tests/bmp/CMakeLists.txt
blob: 3e456f7ea02e60bc5f1c5eae0163fb8befacb447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

SET(TESTS_FILES
	bmp_im2im
	bmp_null
)

FOREACH(test_name ${TESTS_FILES})
	add_executable(${test_name} "${test_name}.c")
	target_link_libraries (${test_name} gdTest ${GD_LIB})
	get_target_property(test_path ${test_name} LOCATION)
	ADD_TEST(${test_name} ${test_path})
ENDFOREACH(test_name)