diff --git a/.gitignore b/.gitignore index 310e849..77d2893 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ mono_crash.* *tornado.*lck* # Build results +*build*/ [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ diff --git a/GhettoCryptCLI/CMakeLists.txt b/GhettoCryptCLI/CMakeLists.txt new file mode 100644 index 0000000..a161560 --- /dev/null +++ b/GhettoCryptCLI/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required(VERSION 3.16) +project(GhettoCryptCLI) + +set(CMAKE_CXX_STANDARD 17) + +FILE(GLOB GhettoCrypt ../GhettoCrypt/*.cpp) + +add_executable(GhettoCryptCLI + + ${GhettoCrypt} + + CommandLineInterface.cpp + Hazelnupp.cpp + main.cpp +)