Added cmakelists and changed externals file structure

This commit is contained in:
2021-04-16 17:57:58 +02:00
parent 197b3eea8a
commit a92e4b6429
2 changed files with 17 additions and 0 deletions

17
CMakeLists.txt Normal file
View File

@@ -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)