Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2012
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. # (C) Copyright 2012: Mateusz Loskot and Christian Henning
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4.  
  5. # Please make sure to read readme.txt!
  6.  
  7. # bring in rules for testing
  8. import testing ;
  9.  
  10. using jpeg : 8b : C:/chhenning/jpeg-8c ;
  11. using zlib : 1.2.5 : C:/chhenning/zlib-1.2.5 ;
  12. using png : 1.4.4 : C:/chhenning/png/lpng154 ;
  13. using libtiff : 3.9.4 : C:/chhenning/tiff/tiff-3.9.5 ;
  14.  
  15. project
  16. : requirements
  17. <toolset>intel:<debug-symbols>off
  18. <toolset>msvc-7.1:<debug-symbols>off
  19. <toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_DEPRECATE <define>_CRT_NONSTDC_NO_DEPRECATE
  20. <toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_WARNINGS <define>_CRT_NONSTDC_NO_DEPRECATE
  21. <toolset>msvc-10.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_WARNINGS <define>_CRT_NONSTDC_NO_DEPRECATE
  22. <link>static
  23. <library>/boost/test//boost_unit_test_framework
  24. <library>/boost/system//boost_system
  25. <library>/boost/filesystem//boost_filesystem
  26. ;
  27.  
  28. test-suite "gil::io_new"
  29. :
  30. [ run
  31. # sources
  32. test.cpp
  33. all_formats_test.cpp
  34. bmp_old_test.cpp
  35. bmp_read_test.cpp
  36. bmp_test.cpp
  37. bmp_write_test.cpp
  38. jpeg_old_test.cpp
  39. jpeg_read_test.cpp
  40. jpeg_test.cpp
  41. jpeg_write_test.cpp
  42. png_file_format_test.cpp
  43. png_old_test.cpp
  44. png_read_test.cpp
  45. png_test.cpp
  46. pnm_old_test.cpp
  47. pnm_read_test.cpp
  48. pnm_test.cpp
  49. pnm_write_test.cpp
  50. tiff_file_format_test.cpp
  51. tiff_old_test.cpp
  52. tiff_subimage_test.cpp
  53. tiff_test.cpp
  54. tiff_tiled_float_test.cpp
  55. tiff_tiled_minisblack_test_1-10.cpp
  56. tiff_tiled_minisblack_test_11-20.cpp
  57. tiff_tiled_minisblack_test_21-31_32-64.cpp
  58. tiff_tiled_minisblack_write_test_1-10.cpp
  59. tiff_tiled_minisblack_write_test_11-20.cpp
  60. tiff_tiled_minisblack_write_test_21-31_32-64.cpp
  61. tiff_tiled_palette_test_1-8.cpp
  62. tiff_tiled_palette_test_8-16.cpp
  63. tiff_tiled_palette_write_test_1-8.cpp
  64. tiff_tiled_palette_write_test_8-16.cpp
  65. tiff_tiled_rgb_contig_test_1-10.cpp
  66. tiff_tiled_rgb_contig_test_11-20.cpp
  67. tiff_tiled_rgb_contig_test_21-31_32_64.cpp
  68. tiff_tiled_rgb_contig_write_test_1-10.cpp
  69. tiff_tiled_rgb_contig_write_test_11-20.cpp
  70. tiff_tiled_rgb_contig_write_test_21-31_32_64.cpp
  71. tiff_tiled_rgb_planar_test_1-10.cpp
  72. tiff_tiled_rgb_planar_test_11-20.cpp
  73. tiff_tiled_rgb_planar_test_21-31_32_64.cpp
  74. tiff_tiled_test.cpp
  75. /ext/jpeg//jpeg
  76. /ext/png//png
  77. /ext/libtiff//tiff
  78. /ext/libtiff//tiffxx
  79. /ext/zlib//z
  80. : # args
  81. : # input-files
  82. : # requirements
  83. : # target-name
  84. gil_io_new_tests
  85. : # default-build
  86. ]
  87.  
  88. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement