FindKAKADU.cmake 483 B

12345678910111213141516171819202122232425
  1. #
  2. # this module looks for KAKADU
  3. # http://www.kakadusoftware.com/
  4. #
  5. #
  6. # Copyright (c) 2006-2014 Mathieu Malaterre <mathieu.malaterre@gmail.com>
  7. #
  8. # Redistribution and use is allowed according to the terms of the New
  9. # BSD license.
  10. # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  11. #
  12. find_program(KDU_EXPAND_EXECUTABLE
  13. kdu_expand
  14. )
  15. find_program(KDU_COMPRESS_EXECUTABLE
  16. kdu_compress
  17. )
  18. mark_as_advanced(
  19. KDU_EXPAND_EXECUTABLE
  20. KDU_COMPRESS_EXECUTABLE
  21. )