From fab251ece68c19ac1712b9fc870e99cf1749c6e3 Mon Sep 17 00:00:00 2001 From: swannyPeng Date: Mon, 6 Mar 2017 15:52:53 +0800 Subject: [PATCH] Add a CMakeList.txt --- cpp/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cpp/CMakeLists.txt diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt new file mode 100644 index 0000000..3a5b5ca --- /dev/null +++ b/cpp/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8.12) +project(QR_Code_generator) +##Add project files +File(GLOB SRCFILES *.cpp) +File(GLOB HEADFILES *.h *.hpp) +add_executable(${PROJECT_NAME} ${SRCFILES} ${HEADFILES}) \ No newline at end of file