diff options
author | Aaron Seigo <aseigo@kde.org> | 2015-12-23 10:47:32 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2015-12-23 10:47:32 +0100 |
commit | 255d73af197faf8437343abc10bd98cca2057a1e (patch) | |
tree | f16bdbdda08a450235230781eec558303c6442a1 /akonadi2_cli/CMakeLists.txt | |
parent | b259728a4f63e022526ef86e6b5d6c62d9938d13 (diff) | |
download | sink-255d73af197faf8437343abc10bd98cca2057a1e.tar.gz sink-255d73af197faf8437343abc10bd98cca2057a1e.zip |
initial import of the new cli app
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 | |||