mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-29 17:39:36 +02:00
14 lines
218 B
CMake
14 lines
218 B
CMake
FIND_PROGRAM(GZIP_PRG
|
|
NAMES gzip
|
|
PATHS /bin
|
|
/usr/bin
|
|
/usr/local/bin
|
|
${CYGWIN_INSTALL_PATH}/bin
|
|
${MSYS_INSTALL_PATH}/usr/bin
|
|
)
|
|
|
|
IF(NOT GZIP_PRG)
|
|
message("Unable to find 'gzip' program")
|
|
ENDIF(NOT GZIP_PRG)
|
|
|