From 08365e5558d800e108b2d377cf6c03397d1ff2c2 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Tue, 19 May 2015 19:56:41 +0200 Subject: Initial commit --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7881e49 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.2.2) +project(cppbot) + +include_directories(${PROJECT_SOURCE_DIR}/include) + +file(GLOB_RECURSE SRC_FILES RELATIVE ${PROJECT_SOURCE_DIR} src/*.cpp) +add_executable(cppbot ${SRC_FILES}) -- cgit v1.2.3