diff options
Diffstat (limited to 'akonadi2_cli/CMakeLists.txt')
-rw-r--r-- | akonadi2_cli/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/akonadi2_cli/CMakeLists.txt b/akonadi2_cli/CMakeLists.txt new file mode 100644 index 0000000..b5bdb46 --- /dev/null +++ b/akonadi2_cli/CMakeLists.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | project(akonadi2_cli) | ||
2 | |||
3 | find_package(Readline REQUIRED) | ||
4 | |||
5 | |||
6 | set(akonadi2_SRCS | ||
7 | main.cpp | ||
8 | module.cpp | ||
9 | modules/exit/exit.cpp | ||
10 | modules/help/help.cpp | ||
11 | repl/repl.cpp | ||
12 | repl/replStates.cpp | ||
13 | state.cpp) | ||
14 | |||
15 | add_executable(${PROJECT_NAME} ${akonadi2_SRCS}) | ||
16 | |||