# - Try to find Mysql-Connector-C++
# Once done, this will define
#
#  MYSQLCONNECTORCPP_FOUND - system has Mysql-Connector-C++ installed
#  MYSQLCONNECTORCPP_INCLUDE_DIRS - the Mysql-Connector-C++ include directories
#  MYSQLCONNECTORCPP_LIBRARIES - link these to use Mysql-Connector-C++
#
# The user may wish to set, in the CMake GUI or otherwise, this variable:
#  MYSQLCONNECTORCPP_ROOT_DIR - path to start searching for the module

# Set a CMAKE variable that contains a root directory to start searching from
# 
set(MYSQLCONNECTORCPP_ROOT_DIR                              # Variable name
        "${MYSQLCONNECTORCPP_ROOT_DIR}"                     # Variable value
        CACHE                                               # The variable is stored in the cache
        PATH                                                # Directory chooser dialog
        "Where to start looking for this component.")       # Document string

if(WIN32)
        find_path(MYSQLCONNECTORCPP_INCLUDE_DIR
                NAMES
                connection.h
                PATHS
                cppconn
                HINTS
                ${MYSQLCONNECTORCPP_ROOT_DIR}
                PATH_SUFFIXES
                include)
               
        find_library(MYSQLCONNECTORCPP_LIBRARY
                NAMES
                mysqlcppconn
                mysqlcppconn-static
#		PATHS
#		"lib"
                HINTS
                ${MYSQLCONNECTORCPP_ROOT_DIR}
                PATH_SUFFIXES
                lib)
               
else()
        find_path(MYSQLCONNECTORCPP_INCLUDE_DIR
                connection.h
		PATHS
		cppconn
                HINTS
                ${MYSQLCONNECTORCPP_ROOT_DIR}
                PATH_SUFFIXES
                include)
               
        find_library(MYSQLCONNECTORCPP_LIBRARY
                NAMES
                mysqlcppconn
                mysqlcppconn-static
                HINTS
                ${MYSQLCONNECTORCPP_ROOT_DIR}
                PATH_SUFFIXES
                lib64
                lib)
endif()

mark_as_advanced(MYSQLCONNECTORCPP_INCLUDE_DIR MYSQLCONNECTORCPP_LIBRARY)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MysqlConnectorCpp
        DEFAULT_MSG
        MYSQLCONNECTORCPP_INCLUDE_DIR
        MYSQLCONNECTORCPP_LIBRARY)

if(MYSQLCONNECTORCPP_FOUND)
        set(MYSQLCONNECTORCPP_INCLUDE_DIRS "${MYSQLCONNECTORCPP_INCLUDE_DIR}") # Add any dependencies here
        set(MYSQLCONNECTORCPP_LIBRARIES "${MYSQLCONNECTORCPP_LIBRARY}") # Add any dependencies here
        mark_as_advanced(MYSQLCONNECTORCPP_ROOT_DIR)
endif()

