mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-28 18:40:52 +01:00
18 lines
310 B
CMake
18 lines
310 B
CMake
include_directories(${PROTOBUF_INCLUDE_DIRS})
|
|
|
|
set(MESSAGES
|
|
remotecontrolmessages.proto
|
|
)
|
|
|
|
protobuf_generate_cpp(PROTO_SOURCES PROTO_HEADERS ${MESSAGES})
|
|
|
|
add_library(libclementine-remote STATIC
|
|
${PROTO_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(libclementine-remote
|
|
${PROTOBUF_LIBRARY}
|
|
libclementine-common
|
|
)
|
|
|