From de84fba0b697980fb92820650d7ec360c367f2c5 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sun, 13 Mar 2022 13:51:13 +0100 Subject: [PATCH] Added cmakelist for cli project --- .gitignore | 1 + GhettoCryptCLI/CMakeLists.txt | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 GhettoCryptCLI/CMakeLists.txt 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 +)