Fixed typo in variable name

The embedded library headers need to include the parent directory and the
include command used the wrong variable name.
This commit is contained in:
Markus Makela 2016-03-01 10:54:04 +02:00
parent bf1a789376
commit 8ebc887e1d

View File

@ -3,7 +3,7 @@ subdirs(MYSQL_INCLUDE_DIR_ALL ${MYSQL_EMBEDDED_INCLUDE_DIR})
foreach(DIR ${MYSQL_INCLUDE_DIR_ALL})
include_directories(${DIR})
endforeach()
include_directories(${MYSQL_EMMBEDDED_INCLUDE_DIR}/..)
include_directories(${MYSQL_EMBEDDED_INCLUDE_DIR}/..)
add_library(qc_mysqlembedded SHARED qc_mysqlembedded.cc)