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