Skip to content

Commit

Permalink
cmake support
Browse files Browse the repository at this point in the history
  • Loading branch information
lodup29 authored Mar 28, 2018
1 parent d3590f4 commit b079b54
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.8.11)
project(sscep)

add_executable (${PROJECT_NAME} sscep.c init.c net.c sceputils.c pkcs7.c ias.c fileutils.c configuration.c engine.c)


target_link_libraries (${PROJECT_NAME} ssl crypto)

install(TARGETS ${PROJECT_NAME} DESTINATION bin)


SET(CPACK_PACKAGE_CONTACT "Andrei Korostelev")

INCLUDE(CPack)

0 comments on commit b079b54

Please sign in to comment.