summaryrefslogtreecommitdiff
path: root/cmake/FindGZIP.cmake
diff options
context:
space:
mode:
authorTomáš Chvátal <scarabeus@gentoo.org>2009-11-04 18:01:25 +0100
committerTomáš Chvátal <scarabeus@gentoo.org>2009-11-04 18:01:25 +0100
commit710843e4dfd146257500be7ad9c0a5c0d61e56c4 (patch)
treeddbb2e744296480c11ce6822ffb80678043f9c25 /cmake/FindGZIP.cmake
parentcbeea28cabebfc45fc0ff0b6446c818b72d8c4cc (diff)
Use PkgConfig where possible
TODO: gettext, SDL_ttf Drop windows bundled libs, since .pc should be able to pick them up on windows too.
Diffstat (limited to 'cmake/FindGZIP.cmake')
-rw-r--r--cmake/FindGZIP.cmake14
1 files changed, 0 insertions, 14 deletions
diff --git a/cmake/FindGZIP.cmake b/cmake/FindGZIP.cmake
deleted file mode 100644
index ca15d5a..0000000
--- a/cmake/FindGZIP.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-# This scripts search up bzip2 binary and put it to the
-# GZIP_TOOL varable.
-FIND_PROGRAM(GZIP_TOOL
- NAMES gzip
- PATHS
- /bin
- /usr/bin
- /usr/local/bin
-)
-IF(NOT GZIP_TOOL)
- IF(GZIP_REQUIRED)
- MESSAGE(FATAL_ERROR "Unable to find 'gzip' executable")
- ENDIF(GZIP_REQUIRED)
-ENDIF(NOT GZIP_TOOL)