Added cmakelist for cli project
This commit is contained in:
parent
9bac50271e
commit
de84fba0b6
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,6 +26,7 @@ mono_crash.*
|
||||
*tornado.*lck*
|
||||
|
||||
# Build results
|
||||
*build*/
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
|
15
GhettoCryptCLI/CMakeLists.txt
Normal file
15
GhettoCryptCLI/CMakeLists.txt
Normal file
@ -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
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user