diff options
author | José Fonseca <jose.r.fonseca@gmail.com> | 2012-10-27 10:13:58 +0100 |
---|---|---|
committer | José Fonseca <jose.r.fonseca@gmail.com> | 2012-10-27 10:13:58 +0100 |
commit | 74936bb4e4a366278770787b641c23ab73a1bbeb (patch) | |
tree | c3ce6be39c52ee5d6e51a99f7f68c70b67bf4a2d /cmake | |
parent | 0094c61568bff9f9dd7bafb711f111698e683831 (diff) |
Always use bundled QJson.
In order to support NaN/Infite.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindQJSON.cmake | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/cmake/FindQJSON.cmake b/cmake/FindQJSON.cmake deleted file mode 100644 index cd007e15..00000000 --- a/cmake/FindQJSON.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Find QJSON - JSON handling library for Qt -# -# This module defines -# QJSON_FOUND - whether the qsjon library was found -# QJSON_LIBRARIES - the qjson library -# QJSON_INCLUDE_DIR - the include path of the qjson library -# - -if (QJSON_INCLUDE_DIR AND QJSON_LIBRARIES) - - # Already in cache - set (QJSON_FOUND TRUE) - -else (QJSON_INCLUDE_DIR AND QJSON_LIBRARIES) - - if (NOT WIN32) - # use pkg-config to get the values of QJSON_INCLUDE_DIRS - # and QJSON_LIBRARY_DIRS to add as hints to the find commands. - include (FindPkgConfig) - pkg_check_modules (PC_QJSON QJson>=0.5) - endif (NOT WIN32) - - find_library (QJSON_LIBRARIES - NAMES - qjson - PATHS - ${PC_QJSON_LIBRARY_DIRS} - ${LIB_INSTALL_DIR} - ${KDE4_LIB_DIR} - ) - - find_path (QJSON_INCLUDE_DIR - NAMES - qjson/parser.h - PATHS - ${PC_QJSON_INCLUDE_DIRS} - ${INCLUDE_INSTALL_DIR} - ${KDE4_INCLUDE_DIR} - ) - - include(FindPackageHandleStandardArgs) - find_package_handle_standard_args(QJSON DEFAULT_MSG QJSON_LIBRARIES QJSON_INCLUDE_DIR) - -endif (QJSON_INCLUDE_DIR AND QJSON_LIBRARIES) |