Skip to content

Commit

Permalink
Merge pull request kindkaktus#1 from lodup29/patch-1
Browse files Browse the repository at this point in the history
Add cmake support
  • Loading branch information
kindkaktus authored Mar 28, 2018
2 parents d3590f4 + b079b54 commit 91f9a9f
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 91f9a9f

Please sign in to comment.