CMakeLists.txt 430 字节
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9
# 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})
Y
Yu Yang 已提交
10
add_dependencies(paddle_parameter paddle_proto ${external_project_dependencies})
Z
zhangjinchao01 已提交
11 12
if(WITH_TESTING)
    add_subdirectory(tests)
Y
Yu Yang 已提交
13
endif()