From 2f2eb1ccefb7492fa7571b6d7166dca3569dbce6 Mon Sep 17 00:00:00 2001 From: Robin Jadoul Date: Tue, 26 Apr 2016 12:35:53 +0200 Subject: [PATCH] First CMakeLists --- CMakeLists.txt | 9 +++++++++ src/CMakeLists.txt | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 src/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..072e665 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.2.2) +project(Lexesis VERSION 0.1) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STNADARD_REQUIRED 11) + +include_directories(include) + +add_subdirectory(src) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..32206e6 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,5 @@ +add_executable(Lexesis + main.cpp + automata.cpp + re.cpp + )