~reviczky/luatex/texlive-bin-git

« back to all changes in this revision

Viewing changes to libs/gd/libgd-2.1.0/tests/gd/CMakeLists.txt

  • Committer: Adam Reviczky
  • Date: 2015-04-26 22:40:47 UTC
  • Revision ID: adam.reviczky@kclalumni.net-20150426224047-i2p26n3wqphupq6z
TeX Live 2015 import (rev. 37052)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
SET(TESTS_FILES
3
 
        gd_im2im
4
 
        gd_null
5
 
        gd_num_colors
6
 
)
7
 
 
8
 
FOREACH(test_name ${TESTS_FILES})
9
 
        add_executable(${test_name} "${test_name}.c")
10
 
        target_link_libraries (${test_name} gdTest)
11
 
        get_target_property(test_path ${test_name} LOCATION)
12
 
        ADD_TEST(${test_name} ${test_path})
13
 
ENDFOREACH(test_name)