diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-03-22 18:44:54 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-03-22 18:44:54 +0100 |
| commit | 10a7462e795bc88e409533fadeab012dd1859da2 (patch) | |
| tree | 0743a8fecd401db32636fd29c278ad5cc593c096 /CMakeLists.txt | |
| parent | 66f66b7818b7cf47a20eae6b940e06c2ee12fe8a (diff) | |
| download | extfs-master.tar.xz extfs-master.zip | |
extsh: add linenoise input handlingmaster
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
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}) |
