17 lines
347 B
CMake
17 lines
347 B
CMake
project(MP)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/include/mp)
|
|
include_directories(${CMAKE_SOURCE_DIR}/include/mp/proto)
|
|
|
|
aux_source_directory(${CMAKE_SOURCE_DIR}/MP MP_DIR)
|
|
aux_source_directory(${CMAKE_SOURCE_DIR}/MP/proto PROTO_DIR)
|
|
|
|
add_library(MP
|
|
${MP_DIR}
|
|
${PROTO_DIR}
|
|
)
|
|
|
|
target_link_libraries(MP
|
|
protobuf
|
|
)
|