You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/parameter/CMakeLists.txt

13 lines
397 B

# The utilities for paddle
file(GLOB PARAMETERS_HEADERS . *.h)
file(GLOB PARAMETERS_SOURCES . *.cpp)
add_library(paddle_parameter STATIC
${PARAMETERS_SOURCES})
add_style_check_target(paddle_parameter ${PARAMETERS_SOURCES})
add_style_check_target(paddle_parameter ${PARAMETERS_HEADERS})
add_dependencies(paddle_parameter gen_proto_cpp)
if(WITH_TESTING)
add_subdirectory(tests)
endif()