add cmakelists

This commit is contained in:
Greg Gauthier 2020-10-22 13:13:54 +01:00
parent 7677698fec
commit 8196f1d72e
2 changed files with 7 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
.idea/
*build*/
CMakeLists.txt

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.17)
project(passwdgen)
set(CMAKE_CXX_STANDARD 20)
add_executable(passwdgen main.cpp)