diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-15 15:36:01 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-15 15:36:01 -0400 |
commit | eae441755b0aa3ecbb60fbf903850c552a070f89 (patch) | |
tree | 5d685e83380c37624f4bf0f084e60242fef5798d /build | |
parent | 1f49ac3c6234b3038366af59fd55002b330893c4 (diff) |
remove redundant cmake file (FindGlib.cmake)
Diffstat (limited to 'build')
-rw-r--r-- | build/FindGlib.cmake | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/build/FindGlib.cmake b/build/FindGlib.cmake deleted file mode 100644 index f1986c9..0000000 --- a/build/FindGlib.cmake +++ /dev/null @@ -1,42 +0,0 @@ -pkg_check_modules(GLIB_PKG glib-2.0) - -if (GLIB_PKG_FOUND) - find_path(GLIB_INCLUDE_DIR NAMES glib.h PATH_SUFFIXES glib-2.0 - PATHS - ${GLIB_PKG_INCLUDE_DIRS} - /usr/include/glib-2.0 - /usr/include - /usr/local/include - ) - find_path(GLIB_CONFIG_INCLUDE_DIR NAMES glibconfig.h PATHS ${GLIB_PKG_LIBDIR} PATH_SUFFIXES glib-2.0/include) - - find_library(GLIB_LIBRARIES NAMES glib-2.0 - PATHS - ${GLIB_PKG_LIBRARY_DIRS} - /usr/lib - /usr/local/lib - ) - -else (GLIB_PKG_FOUND) - # Find Glib even if pkg-config is not working (eg. cross compiling to Windows) - find_library(GLIB_LIBRARIES NAMES glib-2.0) - string (REGEX REPLACE "/[^/]*$" "" GLIB_LIBRARIES_DIR ${GLIB_LIBRARIES}) - - find_path(GLIB_INCLUDE_DIR NAMES glib.h PATH_SUFFIXES glib-2.0) - find_path(GLIB_CONFIG_INCLUDE_DIR NAMES glibconfig.h PATHS ${GLIB_LIBRARIES_DIR} PATH_SUFFIXES glib-2.0/include) - -endif (GLIB_PKG_FOUND) - -if (GLIB_INCLUDE_DIR AND GLIB_CONFIG_INCLUDE_DIR AND GLIB_LIBRARIES) - set(GLIB_INCLUDE_DIRS ${GLIB_INCLUDE_DIR} ${GLIB_CONFIG_INCLUDE_DIR}) -endif (GLIB_INCLUDE_DIR AND GLIB_CONFIG_INCLUDE_DIR AND GLIB_LIBRARIES) - -if(GLIB_INCLUDE_DIRS AND GLIB_LIBRARIES) - set(GLIB_FOUND TRUE CACHE INTERNAL "glib-2.0 found") - message(STATUS "Found glib-2.0: ${GLIB_INCLUDE_DIR}, ${GLIB_LIBRARIES}") -else(GLIB_INCLUDE_DIRS AND GLIB_LIBRARIES) - set(GLIB_FOUND FALSE CACHE INTERNAL "glib-2.0 found") - message(STATUS "glib-2.0 not found.") -endif(GLIB_INCLUDE_DIRS AND GLIB_LIBRARIES) - -mark_as_advanced(GLIB_INCLUDE_DIR GLIB_CONFIG_INCLUDE_DIR GLIB_INCLUDE_DIRS GLIB_LIBRARIES) |