mirror of
https://github.com/QuasarApp/openssl-cmake.git
synced 2025-05-09 07:59:42 +00:00
70 lines
2.6 KiB
CMake
70 lines
2.6 KiB
CMake
# Based on original work by David Manura
|
|
# Copyright (C) 2007-2012 LuaDist.
|
|
# Copyright (C) 2013 Brian Sidebotham
|
|
|
|
# Redistribution and use of this file is allowed according to the terms of the
|
|
# MIT license.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
file( READ ${CMAKE_CURRENT_SOURCE_DIR}/CA.pl.cmake CA_PL )
|
|
file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/CA.pl "${CA_PL}" )
|
|
|
|
file( READ ${CMAKE_CURRENT_SOURCE_DIR}/tsget.cmake TSGET )
|
|
file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/tsget "${TSGET}" )
|
|
|
|
file( READ ${CMAKE_CURRENT_SOURCE_DIR}/progs.h.cmake PROGS_H )
|
|
file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/progs.h "${PROGS_H}" )
|
|
|
|
add_definitions ( -DMONOLITH )
|
|
|
|
set ( E_SRC openssl.c #
|
|
verify.c asn1pars.c req.c dgst.c dh.c dhparam.c enc.c passwd.c gendh.c errstr.c
|
|
ca.c pkcs7.c crl2p7.c crl.c rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c x509.c
|
|
genrsa.c gendsa.c genpkey.c s_server.c s_client.c speed.c s_time.c apps.c s_cb.c
|
|
s_socket.c app_rand.c version.c sess_id.c ciphers.c nseq.c pkcs12.c pkcs8.c pkey.c
|
|
pkeyparam.c pkeyutl.c spkac.c smime.c cms.c rand.c engine.c ocsp.c prime.c ts.c
|
|
srp.c )
|
|
|
|
include_directories( BEFORE SYSTEM
|
|
${PROJECT_SOURCE_DIR}/ # e_os.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/ # progs.h
|
|
)
|
|
|
|
if ( WIN32 )
|
|
if ( EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/winrand.c" )
|
|
list( APPEND E_SRC winrand.c )
|
|
endif()
|
|
endif()
|
|
|
|
add_executable ( openssl ${E_SRC} )
|
|
|
|
target_link_libraries ( openssl crypto ssl )
|
|
|
|
install( TARGETS openssl
|
|
RUNTIME DESTINATION bin )
|
|
|
|
install( FILES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/openssl.cnf
|
|
DESTINATION "${OPENSSLDIR}" )
|
|
|
|
install( FILES
|
|
${CMAKE_CURRENT_BINARY_DIR}/CA.pl
|
|
${CMAKE_CURRENT_BINARY_DIR}/tsget
|
|
DESTINATION share/openssl ) |