16 lines
297 B
CMake
16 lines
297 B
CMake
set(SRCS
|
|
book.cc
|
|
book.h
|
|
book_db.cc
|
|
book_db.h
|
|
book_json.cc
|
|
book_json.h
|
|
views.cc
|
|
views.h
|
|
main.cc
|
|
)
|
|
|
|
add_executable(book_server ${SRCS})
|
|
target_link_libraries(book_server ${EXAMPLE_LIBS} jsoncpp)
|
|
set_target_properties(book_server PROPERTIES FOLDER "Examples")
|