CMakeLists.txt 2.9 KB
Newer Older
W
wangguibao 已提交
1
include(proto/CMakeLists.txt)
W
wangguibao 已提交
2 3 4
include(common/CMakeLists.txt)
include(op/CMakeLists.txt)
include(framework/CMakeLists.txt)
W
wangguibao 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
include(plugin/CMakeLists.txt)
include(src/CMakeLists.txt)

add_executable(pdcodegen ${pdcodegen_srcs})
target_link_libraries(pdcodegen protobuf ${PROTOBUF_PROTOC_LIBRARY})
target_include_directories(pdcodegen PUBLIC
        ${CMAKE_CURRENT_LIST_DIR}/
        ${CMAKE_CURRENT_BINARY_DIR}/)

add_library(pdserving ${pdserving_srcs})
set_source_files_properties(
        ${pdserving_srcs}
        PROPERTIES
        COMPILE_FLAGS  "-Wno-strict-aliasing -Wno-unused-variable -Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor")
W
wangguibao 已提交
19 20
add_dependencies(pdserving protobuf boost brpc leveldb bsl pdcodegen configure
        ullib spreg mempool)
W
wangguibao 已提交
21 22 23 24 25 26 27 28 29

target_include_directories(pdserving PUBLIC
        ${CMAKE_CURRENT_LIST_DIR}/
        ${CMAKE_CURRENT_BINARY_DIR}/
        ${CMAKE_CURRENT_LIST_DIR}/../configure
        ${CMAKE_CURRENT_LIST_DIR}/../mempool
        ${CMAKE_CURRENT_LIST_DIR}/../spreg
        ${CMAKE_CURRENT_LIST_DIR}/../ullib/include
        ${CMAKE_CURRENT_BINARY_DIR}/../bsl/include)
W
serving  
wangguibao 已提交
30 31
target_link_libraries(pdserving brpc protobuf boost leveldb bsl 
        configure ullib spreg mempool -lpthread -lcrypto -lm -lrt -lssl -ldl -lz)
W
wangguibao 已提交
32

W
wangguibao 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
add_executable(pdserving_exe ${pdserving_srcs})
set_source_files_properties(
        ${pdserving_srcs}
        PROPERTIES
        COMPILE_FLAGS  "-Wno-strict-aliasing -Wno-unused-variable -Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor")
add_dependencies(pdserving_exe protobuf boost brpc leveldb bsl pdcodegen
        configure ullib spreg mempool)

target_include_directories(pdserving_exe PUBLIC
        ${CMAKE_CURRENT_LIST_DIR}/
        ${CMAKE_CURRENT_BINARY_DIR}/
        ${CMAKE_CURRENT_LIST_DIR}/../configure
        ${CMAKE_CURRENT_LIST_DIR}/../mempool
        ${CMAKE_CURRENT_LIST_DIR}/../spreg
        ${CMAKE_CURRENT_LIST_DIR}/../ullib/include
        ${CMAKE_CURRENT_BINARY_DIR}/../bsl/include)
target_link_libraries(pdserving_exe brpc protobuf leveldb bsl configure ullib
        spreg mempool -lpthread -lcrypto -lm -lrt -lssl -ldl -lz)
W
wangguibao 已提交
51 52

add_library(pdclient ${pdclient_srcs})
W
wangguibao 已提交
53
set_source_files_properties(
W
wangguibao 已提交
54
        ${pdclient_srcs}
W
wangguibao 已提交
55
        PROPERTIES
W
wangguibao 已提交
56
        COMPILE_FLAGS  "-Wno-strict-aliasing -Wno-unused-variable -Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor")
W
wangguibao 已提交
57 58 59
add_dependencies(pdclient protobuf boost brpc pdcodegen)

target_include_directories(pdclient PUBLIC
W
wangguibao 已提交
60 61 62 63 64 65 66
        ${CMAKE_CURRENT_LIST_DIR}/
        ${CMAKE_CURRENT_BINARY_DIR}/
        ${CMAKE_CURRENT_LIST_DIR}/../configure
        ${CMAKE_CURRENT_LIST_DIR}/../mempool
        ${CMAKE_CURRENT_LIST_DIR}/../spreg
        ${CMAKE_CURRENT_LIST_DIR}/../ullib/include
        ${CMAKE_CURRENT_BINARY_DIR}/../bsl/include)
W
serving  
wangguibao 已提交
67
target_link_libraries(pdclient protobuf boost brpc -lpthread -lcrypto -lm -lrt -lssl -ldl -lz)
W
wangguibao 已提交
68