mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
10 lines
238 B
CMake
10 lines
238 B
CMake
SET(PLUGIN_EXTRA_FILES ${CC_SOURCE_DIR}/libmariadb/ma_errmsg.c)
|
|
|
|
|
|
FILE(GLOB plugin_dirs ${CC_SOURCE_DIR}/plugins/*)
|
|
FOREACH(dir ${plugin_dirs})
|
|
IF (EXISTS ${dir}/CMakeLists.txt)
|
|
INCLUDE(${dir}/CMakeLists.txt)
|
|
ENDIF()
|
|
ENDFOREACH()
|