summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2018-03-22 18:44:54 +0100
committerFelix Morgner <felix.morgner@gmail.com>2018-03-22 18:44:54 +0100
commit10a7462e795bc88e409533fadeab012dd1859da2 (patch)
tree0743a8fecd401db32636fd29c278ad5cc593c096 /CMakeLists.txt
parent66f66b7818b7cf47a20eae6b940e06c2ee12fe8a (diff)
downloadextfs-10a7462e795bc88e409533fadeab012dd1859da2.tar.xz
extfs-10a7462e795bc88e409533fadeab012dd1859da2.zip
extsh: add linenoise input handlingmaster
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index be4bea8..4000d4c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.2)
project("extfs"
- LANGUAGES CXX
+ LANGUAGES C CXX
VERSION 1.0
)
@@ -18,7 +18,10 @@ include("ConanPackages")
option(EXTFS_BUILD_STATIC "Build extfs as a static library" ON)
option(EXTFS_ENABLE_TESTS "Enable CUTE unit tests" ON)
+add_subdirectory("external")
+
include_directories("include")
+include_directories(SYSTEM "external/linenoise")
add_subdirectory("src")
if(${EXTFS_ENABLE_TESTS})