You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
280 B
CMake

set(SRCS
book.cc
book.h
book_json.cc
book_json.h
book_client.cc
book_client.h
main.cc
)
add_executable(book_client ${SRCS})
target_link_libraries(book_client ${EXAMPLE_LIBS} jsoncpp)
set_target_properties(book_client PROPERTIES FOLDER "Examples")