Always link tjbench against jpeg-static instead of the JPEG DLL, since we are only using libjpeg for bitmap I/O

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@710 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC
2011-09-20 05:41:54 +00:00
parent 6b968b28ae
commit 4ad6003253

View File

@@ -201,7 +201,7 @@ target_link_libraries(tjunittest-static turbojpeg-static)
add_executable(tjbench tjbench.c bmp.c tjutil.c rdbmp.c rdppm.c wrbmp.c
wrppm.c)
target_link_libraries(tjbench turbojpeg jpeg)
target_link_libraries(tjbench turbojpeg jpeg-static)
set_property(TARGET tjbench PROPERTY COMPILE_FLAGS
"-DBMP_SUPPORTED -DPPM_SUPPORTED")