Files
MaxScale/server/modules/routing/CMakeLists.txt
Markus Mäkelä a5a579ffce Rename BUILD_AVRO to BUILD_CDC
Using the broader CDC name instead of AVRO for the CMake variable name
makes more sense as there are modules other than the avrorouter.
2017-02-03 14:39:56 +02:00

18 lines
338 B
CMake

if(BUILD_CDC)
add_subdirectory(avrorouter)
endif()
if(BUILD_BINLOG)
add_subdirectory(binlogrouter)
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()