CMakeLists.txt 1.0 KB
Newer Older
H
hedaoyuan 已提交
1 2
file(GLOB h_files . *Op.h)
file(GLOB cpp_files . *Op.cpp)
3 4 5

list(APPEND h_files Function.h)
list(APPEND cpp_files Function.cpp)
6
list(APPEND cpp_files BufferArg.cpp)
7 8

if(WITH_GPU)
H
hedaoyuan 已提交
9
    file(GLOB cu_files . *OpGpu.cu)
10
    cuda_compile(cu_objs ${cu_files})
H
hedaoyuan 已提交
11 12
endif()

13
add_library(paddle_function STATIC ${cpp_files} ${cu_objs})
14
add_dependencies(paddle_function ${external_project_dependencies})
15 16 17


if(WITH_GPU)
H
hedaoyuan 已提交
18
if(WITH_TESTING)
19
    # TODO:
H
hedaoyuan 已提交
20
    # file(GLOB test_files . *OpTest.cpp)
21
    # add_executable(${test_bin} EXCLUDE_FROM_ALL ${test_files})
H
hedaoyuan 已提交
22
    add_simple_unittest(CrossMapNormalOpTest)
23 24 25
    add_simple_unittest(TensorShapeTest)
    add_simple_unittest(TensorTypeTest)
    add_simple_unittest(BufferArgTest)
H
hedaoyuan 已提交
26
    add_simple_unittest(FunctionTest)
27
    add_simple_unittest(ContextProjectionOpTest)
D
dangqingqing 已提交
28
    add_simple_unittest(PadOpTest)
29
endif()
H
hedaoyuan 已提交
30
endif()
31 32 33 34 35 36

add_style_check_target(paddle_function ${h_files})
add_style_check_target(paddle_function ${cpp_files})
if(WITH_GPU)
    add_style_check_target(paddle_function ${cu_files})
endif()