6 lines
185 B
CMake
6 lines
185 B
CMake
add_library(query_classifier SHARED query_classifier.cc)
|
|
install(TARGETS query_classifier COMPONENT lib DESTINATION ${MAXSCALE_LIBDIR})
|
|
if(BUILD_TESTS)
|
|
add_subdirectory(test)
|
|
endif()
|