summaryrefslogtreecommitdiffstats
path: root/akonadi2_cli/CMakeLists.txt
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2015-12-23 10:47:32 +0100
committerAaron Seigo <aseigo@kde.org>2015-12-23 10:47:32 +0100
commit255d73af197faf8437343abc10bd98cca2057a1e (patch)
treef16bdbdda08a450235230781eec558303c6442a1 /akonadi2_cli/CMakeLists.txt
parentb259728a4f63e022526ef86e6b5d6c62d9938d13 (diff)
downloadsink-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.txt16
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 @@
1project(akonadi2_cli)
2
3find_package(Readline REQUIRED)
4
5
6set(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
15add_executable(${PROJECT_NAME} ${akonadi2_SRCS})
16