Initial import
[oweals/usign.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.8)
2
3 PROJECT(usign C)
4 ADD_DEFINITIONS(-O2 -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations)
5
6 SET(SOURCES ed25519.c edsign.c f25519.c fprime.c sha512.c base64.c main.c)
7 ADD_EXECUTABLE(usign ${SOURCES})
8
9 INSTALL(TARGETS usign
10         RUNTIME DESTINATION bin
11 )