CMakeLists.txt 1.2 KB
Newer Older
1
set(FLUID_CORE_MODULES proto_desc memory lod_tensor executor )
2

X
Xin Pan 已提交
3
# TODO(panyx0718): Should this be called paddle_fluid_inference_api_internal?
4
cc_library(paddle_fluid_api
5
    SRCS io.cc
L
Luo Tao 已提交
6
    DEPS ${FLUID_CORE_MODULES} ${GLOB_OP_LIB})
7

8
get_property(fluid_modules GLOBAL PROPERTY FLUID_MODULES)
L
Luo Tao 已提交
9

Y
Yan Chunwei 已提交
10 11 12 13 14 15
if(WITH_CONTRIB)
  set(fluid_modules "${fluid_modules}" paddle_inference_api)
endif()

# Create static library
cc_library(paddle_fluid DEPS ${fluid_modules} paddle_fluid_api)
L
Luo Tao 已提交
16
# Create shared library
L
Liu Yiqun 已提交
17 18
cc_library(paddle_fluid_shared SHARED
    SRCS io.cc
Y
Yan Chunwei 已提交
19 20
    DEPS ${fluid_modules} paddle_fluid_api)

L
Liu Yiqun 已提交
21
set_target_properties(paddle_fluid_shared PROPERTIES OUTPUT_NAME paddle_fluid)
Y
Update  
Yi Wang 已提交
22 23 24 25 26
if(NOT APPLE)
  # TODO(liuyiqun): Temporarily disable the link flag because it is not support on Mac.
  set(LINK_FLAGS "-Wl,--version-script ${CMAKE_CURRENT_SOURCE_DIR}/paddle_fluid.map")
  set_target_properties(paddle_fluid_shared PROPERTIES LINK_FLAGS "${LINK_FLAGS}")
endif()
27

28
if(WITH_TESTING)
L
Luo Tao 已提交
29
  # both tests/book and analysis depends the models that generated by python/paddle/fluid/tests/book
30
  add_subdirectory(tests/book)
L
Luo Tao 已提交
31 32
endif()

S
superjomn 已提交
33 34
add_subdirectory(analysis)

L
Luo Tao 已提交
35 36
if (TENSORRT_FOUND)
  add_subdirectory(tensorrt)
37
endif()