1
2
3set(GREETER_SOURCES
4cached_greeter.cpp
5cached_greeter.h
6cached.h
7fake_key_value_storage.cpp
8fake_key_value_storage.h
9greeter.cpp
10greeter.h
11key_value_storage.cpp
12key_value_storage.h
13main.cpp
14)
15
16add_executable(greeter ${GREETER_SOURCES})
17target_link_libraries(greeter fruit)
18
19# TODO: run the tests here under CMake (ATM they only run when using Bazel).
20