2011-12-02 16:30:19 +01:00
|
|
|
#
|
2014-02-07 11:37:06 +01:00
|
|
|
# this module looks for KAKADU
|
2011-12-02 16:30:19 +01:00
|
|
|
# http://www.kakadusoftware.com/
|
|
|
|
#
|
|
|
|
#
|
2014-02-07 11:37:06 +01:00
|
|
|
# Copyright (c) 2006-2014 Mathieu Malaterre <mathieu.malaterre@gmail.com>
|
2011-12-02 16:30:19 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use is allowed according to the terms of the New
|
|
|
|
# BSD license.
|
|
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
#
|
|
|
|
|
2012-08-30 19:14:39 +02:00
|
|
|
find_program(KDU_EXPAND_EXECUTABLE
|
2011-12-02 16:30:19 +01:00
|
|
|
kdu_expand
|
|
|
|
)
|
|
|
|
|
2014-02-07 11:37:06 +01:00
|
|
|
find_program(KDU_COMPRESS_EXECUTABLE
|
|
|
|
kdu_compress
|
|
|
|
)
|
|
|
|
|
2012-08-30 19:14:39 +02:00
|
|
|
mark_as_advanced(
|
2011-12-02 16:30:19 +01:00
|
|
|
KDU_EXPAND_EXECUTABLE
|
2014-02-07 11:37:06 +01:00
|
|
|
KDU_COMPRESS_EXECUTABLE
|
2011-12-02 16:30:19 +01:00
|
|
|
)
|