From 693df5b38acf38c86eb0af1b1986798906ce7978 Mon Sep 17 00:00:00 2001 From: Billy Brawner Date: Mon, 12 Feb 2018 07:32:28 -0600 Subject: [PATCH] Add CMakeLists.txt --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d13f83f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.7) +project(Feader) +set(PROJECT_SOURCE_DIR, "src") +include_directories( + "include" + "lib" +) +add_executable(Feader src/feader.c) \ No newline at end of file