13 lines
351 B
13 lines
351 B
9 years ago
|
# The utilities for paddle
|
||
|
|
||
|
file(GLOB UTIL_HEADERS . *.h)
|
||
|
file(GLOB UTIL_SOURCES . *.cpp)
|
||
|
|
||
|
add_library(paddle_utils STATIC
|
||
|
${UTIL_SOURCES})
|
||
|
add_style_check_target(paddle_utils ${UTIL_HEADERS})
|
||
|
add_style_check_target(paddle_utils ${UTIL_SOURCES})
|
||
|
add_dependencies(paddle_utils gen_proto_cpp)
|
||
|
if(WITH_TESTING)
|
||
|
add_subdirectory(tests)
|
||
|
endif()
|