summaryrefslogtreecommitdiff
path: root/tests/bmp
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2013-04-24 07:51:17 +0200
committerPierre Joye <pierre.php@gmail.com>2013-04-24 07:51:17 +0200
commitb6b19412b5333b36e1607d7a2e1938d73ecdadf8 (patch)
treece370bb40282984fe79dcdc5a21a9e7389e8cb7c /tests/bmp
parente50515d82de0d71a2edc70cc90c78e288abb33a7 (diff)
downloadlibgd-b6b19412b5333b36e1607d7a2e1938d73ecdadf8.tar.gz
fix test build, missing gd_lib, TODO: run tests twice for static and shared builds (as they are done at the same time by default)
Diffstat (limited to 'tests/bmp')
-rw-r--r--tests/bmp/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bmp/CMakeLists.txt b/tests/bmp/CMakeLists.txt
index ac891a3..3e456f7 100644
--- a/tests/bmp/CMakeLists.txt
+++ b/tests/bmp/CMakeLists.txt
@@ -6,7 +6,7 @@ SET(TESTS_FILES
FOREACH(test_name ${TESTS_FILES})
add_executable(${test_name} "${test_name}.c")
- target_link_libraries (${test_name} gdTest)
+ 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)