-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
cmake_minimum_required(VERSION 3.0) | ||
|
||
project(Cryptkeeper) | ||
|
||
#for POSIX: use | ||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++ -static-libgcc") | ||
project(cryptkeeper) | ||
|
||
# C++ standard libraries bundled | ||
#set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++ -static-libgcc") | ||
|
||
set(CMAKE_BUILD_TYPE Release) | ||
|
||
|
||
include_directories(.) | ||
|
||
add_executable(Cryptkeeper | ||
add_executable(cryptkeeper | ||
crypt.cpp | ||
crypt.h) | ||
|
||
#for Windows, using boost 1.81.0 in the below path, uncomment | ||
# for Windows, using boost 1.81.0 in the below path, uncomment | ||
#include_directories("C:/Program Files/Boost/boost_1_81_0/") | ||
|
||
# for Windows to not need Visual C++ runtime installed | ||
#set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /NODEFAULTLIB:MSVCRT") | ||
#set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT") | ||
|