CMakeLists.txt 1.0 KB
Newer Older
1
set(FLUID_CORE_MODULES proto_desc memory lod_tensor executor init)
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

L
Liu Yiqun 已提交
8
# Create static library
9 10
get_property(fluid_modules GLOBAL PROPERTY FLUID_MODULES)
cc_library(paddle_fluid DEPS ${fluid_modules})
L
Luo Tao 已提交
11 12

# Create shared library
L
Liu Yiqun 已提交
13 14
cc_library(paddle_fluid_shared SHARED
    SRCS io.cc
15
    DEPS ${fluid_modules})
L
Liu Yiqun 已提交
16
set_target_properties(paddle_fluid_shared PROPERTIES OUTPUT_NAME paddle_fluid)
Y
Update  
Yi Wang 已提交
17 18 19 20 21
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()
22

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

if (TENSORRT_FOUND)
  add_subdirectory(tensorrt)
31
endif()