CMakeLists.txt 1.5 KB
Newer Older
1 2 3 4 5 6 7
# analysis and tensorrt must be added before creating static library,
# otherwise, there would be undefined reference to them in static library.
add_subdirectory(analysis)
if (TENSORRT_FOUND)
  add_subdirectory(tensorrt)
endif()

L
Luo Tao 已提交
8
set(FLUID_CORE_MODULES proto_desc memory lod_tensor executor)
9

X
Xin Pan 已提交
10
# TODO(panyx0718): Should this be called paddle_fluid_inference_api_internal?
11
cc_library(paddle_fluid_api
12
    SRCS io.cc
L
Luo Tao 已提交
13
    DEPS ${FLUID_CORE_MODULES} ${GLOB_OP_LIB})
14

15
get_property(fluid_modules GLOBAL PROPERTY FLUID_MODULES)
L
Luo Tao 已提交
16

Y
Yan Chunwei 已提交
17 18
# Create static library
cc_library(paddle_fluid DEPS ${fluid_modules} paddle_fluid_api)
19 20 21 22 23 24
if(NOT APPLE)
  # TODO(liuyiqu: Temporarily disable the link flag because it is not support on Mac.
  set(LINK_FLAGS "-Wl,--retain-symbols-file ${CMAKE_CURRENT_SOURCE_DIR}/paddle_fluid.sym")
  set_target_properties(paddle_fluid PROPERTIES LINK_FLAGS "${LINK_FLAGS}")
endif()

L
Luo Tao 已提交
25
# Create shared library
L
Liu Yiqun 已提交
26 27
cc_library(paddle_fluid_shared SHARED
    SRCS io.cc
Y
Yan Chunwei 已提交
28 29
    DEPS ${fluid_modules} paddle_fluid_api)

L
Liu Yiqun 已提交
30
set_target_properties(paddle_fluid_shared PROPERTIES OUTPUT_NAME paddle_fluid)
Y
Update  
Yi Wang 已提交
31 32 33 34 35
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()
36

37
if(WITH_TESTING)
L
Luo Tao 已提交
38
  # both tests/book and analysis depends the models that generated by python/paddle/fluid/tests/book
39
  add_subdirectory(tests/book)
L
Luo Tao 已提交
40
endif()
Q
qiaolongfei 已提交
41 42 43
if(NOT APPLE)
  add_subdirectory(api)
endif()