
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.
18 lines
327 B
CMake
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()
|