From 10a7462e795bc88e409533fadeab012dd1859da2 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 22 Mar 2018 18:44:54 +0100 Subject: extsh: add linenoise input handling --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') 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}) -- cgit v1.2.3