From 2620091238a08f6e59456d030a606cb296dd7141 Mon Sep 17 00:00:00 2001 From: Nemanja Trifunovic Date: Sat, 17 Oct 2015 20:16:06 -0400 Subject: [PATCH] Initial CMake files --- CMakeLists.txt | 5 +++++ samples/CMakeLists.txt | 1 + 2 files changed, 6 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 samples/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..4a23de7a6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required (VERSION 2.6) +project (utf8cpp) + +include_directories ("${PROJECT_SOURCE_DIR}/source") +add_subdirectory (samples) diff --git a/samples/CMakeLists.txt b/samples/CMakeLists.txt new file mode 100644 index 000000000..255e01cd4 --- /dev/null +++ b/samples/CMakeLists.txt @@ -0,0 +1 @@ +add_executable (sample docsample.cpp) -- 2.40.0