1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-28 18:40:52 +01:00
Clementine-audio-player-Mac.../ext/libclementine-remote/CMakeLists.txt
2015-12-14 00:02:07 +11:00

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
)