
Each protocol 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.
15 lines
245 B
CMake
15 lines
245 B
CMake
if(BUILD_CDC)
|
|
add_subdirectory(CDC)
|
|
endif()
|
|
|
|
add_subdirectory(HTTPD)
|
|
add_subdirectory(maxscaled)
|
|
add_subdirectory(MySQLBackend)
|
|
add_subdirectory(MySQLClient)
|
|
add_subdirectory(telnetd)
|
|
|
|
|
|
if(BUILD_TESTS)
|
|
add_subdirectory(testprotocol)
|
|
endif()
|