CMakeLists.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # ***** BEGIN GPL LICENSE BLOCK *****
  2. #
  3. # This program is free software; you can redistribute it and/or
  4. # modify it under the terms of the GNU General Public License
  5. # as published by the Free Software Foundation; either version 2
  6. # of the License, or (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software Foundation,
  15. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. #
  17. # The Original Code is Copyright (C) 2006, Blender Foundation
  18. # All rights reserved.
  19. #
  20. # The Original Code is: all of this file.
  21. #
  22. # Contributor(s): Jacques Beaurain.
  23. #
  24. # ***** END GPL LICENSE BLOCK *****
  25. set(INC
  26. .
  27. )
  28. set(INC_SYS
  29. )
  30. add_definitions(${OPENJPEG_DEFINES})
  31. set(SRC
  32. bio.c
  33. cio.c
  34. dwt.c
  35. event.c
  36. image.c
  37. j2k.c
  38. j2k_lib.c
  39. jp2.c
  40. jpt.c
  41. mct.c
  42. mqc.c
  43. openjpeg.c
  44. pi.c
  45. raw.c
  46. t1.c
  47. t2.c
  48. tcd.c
  49. tgt.c
  50. cidx_manager.c
  51. phix_manager.c
  52. ppix_manager.c
  53. thix_manager.c
  54. tpix_manager.c
  55. bio.h
  56. cio.h
  57. dwt.h
  58. event.h
  59. fix.h
  60. image.h
  61. int.h
  62. j2k.h
  63. j2k_lib.h
  64. jp2.h
  65. jpt.h
  66. mct.h
  67. mqc.h
  68. openjpeg.h
  69. opj_includes.h
  70. opj_malloc.h
  71. pi.h
  72. raw.h
  73. t1.h
  74. t1_luts.h
  75. t2.h
  76. tcd.h
  77. tgt.h
  78. cidx_manager.h
  79. indexbox_manager.h
  80. opj_config.h
  81. )
  82. blender_add_lib(extern_openjpeg "${SRC}" "${INC}" "${INC_SYS}")