From a92e4b6429006d9f3b88ced8d61f61f160ae5ec8 Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Fri, 16 Apr 2021 17:57:58 +0200 Subject: [PATCH] Added cmakelists and changed externals file structure --- CMakeLists.txt | 17 +++++++++++++++++ {059 => txts}/cipher.txt | 0 2 files changed, 17 insertions(+) create mode 100644 CMakeLists.txt rename {059 => txts}/cipher.txt (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..6e529a0 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.1) + +# C++ 11 is standard +set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use") +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +project( + ProjectEuler + VERSION 0.0.1 + LANGUAGES CXX +) + +add_executable(base base.cpp) + +# For each euler problem a new executable here +add_executable(euler059 059/main.cpp) \ No newline at end of file diff --git a/059/cipher.txt b/txts/cipher.txt similarity index 100% rename from 059/cipher.txt rename to txts/cipher.txt