* Elasticsearch and es_objects plugins updated * Expand es_objects plugin to store more objects * es_objects configuration options * Store transaction objects
31 lines
827 B
CMake
31 lines
827 B
CMake
file(GLOB HEADERS "include/graphene/es_objects/*.hpp")
|
|
|
|
add_library( graphene_es_objects
|
|
es_objects.cpp
|
|
)
|
|
|
|
find_curl()
|
|
|
|
include_directories(${CURL_INCLUDE_DIRS})
|
|
if(CURL_STATICLIB)
|
|
SET_TARGET_PROPERTIES(graphene_es_objects PROPERTIES
|
|
COMPILE_DEFINITIONS "CURL_STATICLIB")
|
|
endif(CURL_STATICLIB)
|
|
if(MSVC)
|
|
set_source_files_properties(es_objects.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )
|
|
endif(MSVC)
|
|
|
|
target_link_libraries( graphene_es_objects PRIVATE graphene_plugin ${CURL_LIBRARIES} )
|
|
target_include_directories( graphene_es_objects
|
|
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|
|
|
|
|
|
install( TARGETS
|
|
graphene_es_objects
|
|
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
INSTALL( FILES ${HEADERS} DESTINATION "include/graphene/es_objects" )
|
|
|