
The embedded library headers need to include the parent directory and the include command used the wrong variable name.
16 lines
811 B
CMake
16 lines
811 B
CMake
# Include the embedded library headers
|
|
subdirs(MYSQL_INCLUDE_DIR_ALL ${MYSQL_EMBEDDED_INCLUDE_DIR})
|
|
foreach(DIR ${MYSQL_INCLUDE_DIR_ALL})
|
|
include_directories(${DIR})
|
|
endforeach()
|
|
include_directories(${MYSQL_EMBEDDED_INCLUDE_DIR}/..)
|
|
|
|
add_library(qc_mysqlembedded SHARED qc_mysqlembedded.cc)
|
|
|
|
include_directories(${MYSQL_INCLUDE_DIR})
|
|
target_link_libraries(qc_mysqlembedded ${MYSQL_EMBEDDED_LIBRARIES} aio crypt crypto dl m ${PCRE_LINK_FLAGS} ssl stdc++ z)
|
|
set_target_properties(qc_mysqlembedded PROPERTIES VERSION "1.0.0")
|
|
set_target_properties(qc_mysqlembedded PROPERTIES LINK_FLAGS -Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/qc_mysqlembedded.map)
|
|
#set_target_properties(qc_mysqlembedded PROPERTIES LINK_FLAGS -Wl,-z,defs)
|
|
install(TARGETS qc_mysqlembedded COMPONENT lib DESTINATION ${MAXSCALE_LIBDIR})
|