~ubuntu-branches/ubuntu/intrepid/libgd2/intrepid-security

« back to all changes in this revision

Viewing changes to tests/jpeg/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2008-08-03 19:21:21 UTC
  • mfrom: (1.1.5 upstream) (9.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080803192121-57qhprpspgsyaij2
Tags: 2.0.36~rc1~dfsg-3ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: Drop unnecessary build dependency 'gnulib'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
SET(TESTS_FILES
3
 
        jpeg_read
4
 
        jpeg_empty_file
5
 
)
6
 
 
7
 
FOREACH(test_name ${TESTS_FILES})
8
 
        add_executable(${test_name} "${test_name}.c")
9
 
        target_link_libraries (${test_name} gdTest ${GD_LIB})
10
 
        ADD_TEST(${test_name} ${EXECUTABLE_OUTPUT_PATH}/${test_name})
11
 
ENDFOREACH(test_name)