2022-03-13 13:51:13 +01:00
|
|
|
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
|
2022-03-13 18:10:23 +01:00
|
|
|
StringTools.cpp
|
2022-03-13 13:51:13 +01:00
|
|
|
main.cpp
|
|
|
|
)
|