mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 02:46:57 +01:00
17 lines
288 B
CMake
17 lines
288 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
|
|
libclementine-common
|
|
)
|
|
|