mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-03 19:07:41 +03:00
Initial import
This commit is contained in:
parent
9d72e182bc
commit
bd9ffc828e
12 changed files with 1256 additions and 0 deletions
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
project(minisign C)
|
||||
|
||||
include(CheckLibraryExists)
|
||||
|
||||
find_library(LIB_SODIUM NAMES sodium REQUIRED)
|
||||
|
||||
add_executable(minisign
|
||||
src/minisign.c src/base64.c src/helpers.c src/get_line.c)
|
||||
|
||||
target_link_libraries(minisign ${LIB_SODIUM})
|
||||
|
||||
install(TARGETS minisign DESTINATION bin)
|
Loading…
Add table
Add a link
Reference in a new issue