mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +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()
|