summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/FindGC.cmake
diff options
context:
space:
mode:
authorJoshua L. Blocher <verbalshadow@gmail.com>2008-05-29 02:39:00 +0000
committerverbalshadow <verbalshadow@users.sourceforge.net>2008-05-29 02:39:00 +0000
commit03204b46cdd164ea531bebce16360f95b6e946bc (patch)
tree79c38e6e7d751e24193347f3f0ffb90cbc3fb7cf /CMakeScripts/FindGC.cmake
parentRefactoring out common code (diff)
downloadinkscape-03204b46cdd164ea531bebce16360f95b6e946bc.tar.gz
inkscape-03204b46cdd164ea531bebce16360f95b6e946bc.zip
Cmake: Improve Gtkmm dependency checking, add new files to CMakeLists.txts, remove old/unused files
(bzr r5760)
Diffstat (limited to 'CMakeScripts/FindGC.cmake')
-rw-r--r--CMakeScripts/FindGC.cmake26
1 files changed, 0 insertions, 26 deletions
diff --git a/CMakeScripts/FindGC.cmake b/CMakeScripts/FindGC.cmake
deleted file mode 100644
index 64d9894b6..000000000
--- a/CMakeScripts/FindGC.cmake
+++ /dev/null
@@ -1,26 +0,0 @@
-# - Find garbage collector library
-# Go hunting for garbage collector compoments
-# Defines:
-# LIBGC_INCLUDE_DIR
-
-
-# To find gc on Windows, use DEVLIBS_PATH variable set by mingwenv.bat
-
-FIND_PATH(LIBGC_INCLUDE_DIR gc.h
- /usr/include/gc
- /usr/local/include/gc
- $ENV{DEVLIBS_PATH}//include//gc )
-
-
-IF (LIBGC_INCLUDE_DIR)
- SET(LIBGC_FOUND TRUE)
-ENDIF (LIBGC_INCLUDE_DIR)
-
-IF (LIBGC_FOUND)
- MESSAGE(STATUS "gc: FOUND ( ${LIBGC_INCLUDE_DIR} )")
-ELSE(LIBGC_FOUND)
- MESSAGE(FATAL_ERROR "gc: NOT FOUND")
-ENDIF (LIBGC_FOUND)
-
-INCLUDE_DIRECTORIES( ${LIBGC_INCLUDE_DIR} )
-