mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Use MinSizeRel by default
This commit is contained in:
parent
ad35ac47fa
commit
a97739eb35
2 changed files with 4 additions and 1 deletions
|
@ -4,6 +4,10 @@ project(minisign C)
|
|||
|
||||
include(CheckLibraryExists)
|
||||
|
||||
IF(NOT CMAKE_BUILD_TYPE)
|
||||
SET(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE)
|
||||
ENDIF(NOT CMAKE_BUILD_TYPE)
|
||||
|
||||
find_library(LIB_SODIUM NAMES sodium REQUIRED)
|
||||
|
||||
add_executable(minisign
|
||||
|
|
|
@ -18,7 +18,6 @@ Compilation:
|
|||
$ cmake ..
|
||||
$ make
|
||||
# make install
|
||||
$ cd ..
|
||||
|
||||
Creating a key pair
|
||||
-------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue