diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 10:05:28 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 10:05:28 -0400 |
commit | 31bca4f44d92b6ca0e67f355f46791270a9c471d (patch) | |
tree | 4956286288d3f1464d0471c0de014d13693e3612 /build | |
parent | 4e6a4994026bffa5036af51124099de4ebab413d (diff) |
remove useless file
Diffstat (limited to 'build')
-rw-r--r-- | build/FinxdGlib.cmake | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/build/FinxdGlib.cmake b/build/FinxdGlib.cmake deleted file mode 100644 index f1986c9..0000000 --- a/build/FinxdGlib.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) |