summaryrefslogtreecommitdiffstats
path: root/akonadi2_cli/CMakeLists.txt
diff options
context:
space:
mode:
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