diff options
author | pajoye <none@none> | 2008-04-18 14:32:10 +0000 |
---|---|---|
committer | pajoye <none@none> | 2008-04-18 14:32:10 +0000 |
commit | b406d91158560613002cc00bf47d685779a7fa4c (patch) | |
tree | 3e19c4127df20be2357510c0918af02abbfef518 /tests/gdimagearc | |
parent | 9b64daf7136acb0bc1c188073f42c844d304b0c9 (diff) | |
download | libgd-b406d91158560613002cc00bf47d685779a7fa4c.tar.gz |
- fix tests running under MinGW
- jpeg and freetpye (2.3.5) compiled under mingw seems to behaves differently.
jpeg_read and freetype/bug00132 tests fail. I will have to investigate later
Diffstat (limited to 'tests/gdimagearc')
-rw-r--r-- | tests/gdimagearc/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gdimagearc/CMakeLists.txt b/tests/gdimagearc/CMakeLists.txt index 3ef4fcf..dc47c68 100644 --- a/tests/gdimagearc/CMakeLists.txt +++ b/tests/gdimagearc/CMakeLists.txt @@ -4,6 +4,6 @@ SET(TESTS_FILES FOREACH(test_name ${TESTS_FILES}) add_executable(${test_name} "${test_name}.c") - target_link_libraries (${test_name} gdTest ${GD_LIB}) + target_link_libraries (${test_name} ${GDTESTS_TARGET_LINK}) ADD_TEST(${test_name} ${EXECUTABLE_OUTPUT_PATH}/${test_name}) ENDFOREACH(test_name) |