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
|
||
|
)
|
||
|
|