From: <ai...@us...> - 2009-11-14 19:20:32
|
Revision: 10587 http://plplot.svn.sourceforge.net/plplot/?rev=10587&view=rev Author: airwin Date: 2009-11-14 19:20:22 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Implement test_all_qt and test_all_cairo custom targets which test all qt devices and special examples and all cairo devices and special examples. Modified Paths: -------------- trunk/examples/CMakeLists.txt Modified: trunk/examples/CMakeLists.txt =================================================================== --- trunk/examples/CMakeLists.txt 2009-11-14 18:16:12 UTC (rev 10586) +++ trunk/examples/CMakeLists.txt 2009-11-14 19:20:22 UTC (rev 10587) @@ -682,6 +682,35 @@ list(APPEND interactive_targets_LIST ${targets_examples_tk}) endif(targets_examples_tk) + # Custom target to test all of qt devices/special examples. + # Must be maintained. + add_custom_target(test_all_qt) + add_dependencies(test_all_qt + test_c_epsqt + test_c_pdfqt + test_c_bmpqt + test_c_jpgqt + test_c_pngqt + test_c_ppmqt + test_c_tiffqt + test_c_svgqt + test_c_qtwidget + test_qt_example + ) + + # Custom target to test all of cairo devices/special examples. + # Must be maintained. + add_custom_target(test_all_cairo) + add_dependencies(test_all_cairo + test_c_pdfcairo + test_c_pngcairo + test_c_pscairo + test_c_svgcairo + test_extcairo + test_c_xcairo + test_extXdrawable + ) + endif(BUILD_TEST) if(NOT CORE_BUILD) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |