From 8196f1d72ec200c55c30e80f70ed6997cb94db18 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 22 Oct 2020 13:13:54 +0100 Subject: [PATCH] add cmakelists --- .gitignore | 2 +- CMakeLists.txt | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 CMakeLists.txt diff --git a/.gitignore b/.gitignore index 811eeac..95f697d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .idea/ *build*/ -CMakeLists.txt + diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..36a96c2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.17) +project(passwdgen) + +set(CMAKE_CXX_STANDARD 20) + +add_executable(passwdgen main.cpp) \ No newline at end of file