Files
MaxScale/server/modules/routing/CMakeLists.txt
Johan Wikman 6028bf8f6c Move all routers into subdirs of their own
Each router module now resides in a subdirectory of its own.
The name of the subdirectory is the same as the name of the
library in the module's CMakeLists.txt file.
2016-08-18 11:10:04 +03:00

18 lines
327 B
CMake

if(BUILD_AVRO)
add_subdirectory(avro)
endif()
if(BUILD_BINLOG)
add_subdirectory(binlog)
endif()
add_subdirectory(cli)
add_subdirectory(debugcli)
add_subdirectory(maxinfo)
add_subdirectory(readconnroute)
add_subdirectory(readwritesplit)
add_subdirectory(schemarouter)
if(BUILD_TESTS)
add_subdirectory(testroute)
endif()