myx-redis
This commit is contained in:
parent
d5d415fed1
commit
cac598e912
45
FindMyxRedis.cmake
Normal file
45
FindMyxRedis.cmake
Normal file
@ -0,0 +1,45 @@
|
||||
if(NOT MYX_REDIS_IS_EXTERNAL_PROJECT)
|
||||
set(MYX_REDIS_PREFIX "" CACHE PATH "The path to the prefix of an myx-redis installation")
|
||||
set(MYX_REDIS_INCLUDE_DIR "" CACHE PATH "The path to the headers of an myx-redis installation")
|
||||
set(MYX_REDIS_LIBRARY_DIR "" CACHE PATH "The path to the library of an myx-redis installation")
|
||||
|
||||
set(_search_paths "")
|
||||
if(MYX_REDIS_INCLUDE_DIR AND EXISTS ${MYX_REDIS_INCLUDE_DIR})
|
||||
list(APPEND _search_paths ${MYX_REDIS_INCLUDE_DIR})
|
||||
endif()
|
||||
if(MYX_REDIS_PREFIX AND EXISTS ${MYX_REDIS_PREFIX})
|
||||
list(APPEND _search_paths "${MYX_REDIS_PREFIX}/include")
|
||||
endif()
|
||||
find_path(
|
||||
MYX_REDIS_INCLUDE_DIRS
|
||||
NAMES myx/redis/sync_client.hpp
|
||||
PATHS ${_search_paths})
|
||||
|
||||
set(_search_paths "")
|
||||
if(MYX_REDIS_LIBRARY_DIR AND EXISTS ${MYX_REDIS_LIBRARY_DIR})
|
||||
list(APPEND _search_paths ${MYX_REDIS_LIBRARY_DIR})
|
||||
endif()
|
||||
if(MYX_REDIS_PREFIX AND EXISTS ${MYX_REDIS_PREFIX})
|
||||
list(APPEND _search_paths "${MYX_REDIS_PREFIX}/lib")
|
||||
endif()
|
||||
find_library(
|
||||
MYX_REDIS_LIBRARIES
|
||||
NAMES preprocmath
|
||||
PATHS ${_search_paths})
|
||||
unset(_search_paths)
|
||||
|
||||
if(MYX_REDIS_INCLUDE_DIRS AND MYX_REDIS_LIBRARIES)
|
||||
set(MYX_REDIS_FOUND TRUE)
|
||||
endif()
|
||||
|
||||
if(MYX_REDIS_FOUND)
|
||||
if(NOT MYX_REDIS_FIND_QUIETLY)
|
||||
message(STATUS "Found myx-redis")
|
||||
endif()
|
||||
set(HAVE_MYX_REDIS 1)
|
||||
elseif(MYX_REDIS_FOUND)
|
||||
if(MYX_REDIS_FIND_REQUIRED)
|
||||
message(FATAL_ERROR "Could not find myx-redis")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
39
FindMyxRedisThirdparty.cmake
Normal file
39
FindMyxRedisThirdparty.cmake
Normal file
@ -0,0 +1,39 @@
|
||||
# Подключение внешних проектов
|
||||
include(ExternalProject)
|
||||
|
||||
# cmake-format: off
|
||||
list(APPEND _ext_project_args
|
||||
myx-redis
|
||||
SOURCE_DIR ${CMAKE_SOURCE_DIR}/thirdparty/myx-redis
|
||||
INSTALL_DIR ${CMAKE_BINARY_DIR}
|
||||
DOWNLOAD_COMMAND ""
|
||||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}"
|
||||
-DCMLIB_MAIN_DIR=${CMLIB_MAIN_DIR}
|
||||
${CMLIB_EXT_PROJ_DEFAULT_ARGS}
|
||||
<SOURCE_DIR>)
|
||||
if(MyxRedisThirdparty_FIND_COMPONENTS STREQUAL "headers")
|
||||
list(APPEND _ext_project_args
|
||||
BUILD_COMMAND true
|
||||
INSTALL_COMMAND ${CMAKE_MAKE_PROGRAM} myx-redis-install-headers)
|
||||
endif()
|
||||
ExternalProject_Add(${_ext_project_args})
|
||||
unset(_ext_project_args)
|
||||
|
||||
set(MYX_REDIS_IS_EXTERNAL_PROJECT ON CACHE BOOL "" FORCE)
|
||||
# cmake-format: on
|
||||
|
||||
set(MYX_REDIS_PREFIX
|
||||
${CMAKE_BINARY_DIR}
|
||||
CACHE FILEPATH "" FORCE)
|
||||
set(MYX_REDIS_INCLUDE_DIR
|
||||
${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_INCLUDEDIR}
|
||||
CACHE PATH "" FORCE)
|
||||
set(MYX_REDIS_INCLUDE_DIRS
|
||||
${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_INCLUDEDIR}
|
||||
CACHE PATH "" FORCE)
|
||||
set(MYX_REDIS_LIBRARY_DIR
|
||||
${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}
|
||||
CACHE PATH "" FORCE)
|
||||
set(MYX_REDIS_LIBRARIES
|
||||
${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}/libmyx-redis.a
|
||||
CACHE FILEPATH "" FORCE)
|
Loading…
x
Reference in New Issue
Block a user