diff options
Diffstat (limited to 'kio/kssl')
-rw-r--r-- | kio/kssl/CMakeLists.txt | 62 | ||||
-rw-r--r-- | kio/kssl/kssl/CMakeLists.txt | 14 | ||||
-rw-r--r-- | kio/kssl/kssl/caroot/CMakeLists.txt | 12 | ||||
-rw-r--r-- | kio/kssl/ksslconfig.h.cmake | 26 |
4 files changed, 114 insertions, 0 deletions
diff --git a/kio/kssl/CMakeLists.txt b/kio/kssl/CMakeLists.txt new file mode 100644 index 000000000..6aee17a8c --- /dev/null +++ b/kio/kssl/CMakeLists.txt @@ -0,0 +1,62 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( kssl ) + +add_definitions( + ${TQT_CFLAGS_OTHER} + -include tqt.h +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/dcop + ${CMAKE_SOURCE_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdecore/network + ${CMAKE_SOURCE_DIR}/kdeui + ${CMAKE_SOURCE_DIR}/kwallet/client +) + + +##### headers ################################### + +install( FILES + kssl.h ksslcertificatehome.h ksslsettings.h ksslcertificate.h + ksslconnectioninfo.h ksslcertificatefactory.h ksslcertificatecache.h + ksslpeerinfo.h ksslinfodlg.h ksslcertdlg.h ksslutils.h kopenssl.h + ksslall.h ksslpkcs12.h ksslcertchain.h ksslkeygen.h ksslx509v3.h + ksslsigners.h ksslpkcs7.h ksslpemcallback.h ksslsession.h + ${CMAKE_CURRENT_BINARY_DIR}/ksslconfig.h ksslx509map.h ksmimecrypto.h + DESTINATION ${INCLUDE_INSTALL_DIR} ) + + +##### kssl ###################################### + +set( target kssl ) + +set( ${target}_SRCS + kssl.cc ksslcertificatehome.cc ksslsettings.cc + ksslcertificate.cc ksslconnectioninfo.cc ksslcertificatefactory.cc + ksslcertificatecache.cc ksslpeerinfo.cc ksslinfodlg.cc + ksslcertdlg.cc ksslutils.cc kopenssl.cc ksslpkcs12.cc + ksslcertchain.cc ksslkeygen.cc ksslx509v3.cc + ksslsigners.cc ksslpkcs7.cc ksslpemcallback.cc + ksslx509map.cc ksslsession.cc keygenwizard.ui + keygenwizard2.ui ksmimecrypto.cc ksslcsessioncache.cc +) + +tde_add_library( ${target} STATIC_PIC AUTOMOC + SOURCES ${${target}_SRCS} +) diff --git a/kio/kssl/kssl/CMakeLists.txt b/kio/kssl/kssl/CMakeLists.txt new file mode 100644 index 000000000..eeed10125 --- /dev/null +++ b/kio/kssl/kssl/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( caroot ) + +install( FILES ksslcalist DESTINATION ${CONFIG_INSTALL_DIR} ) diff --git a/kio/kssl/kssl/caroot/CMakeLists.txt b/kio/kssl/kssl/caroot/CMakeLists.txt new file mode 100644 index 000000000..05e2381a9 --- /dev/null +++ b/kio/kssl/kssl/caroot/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES ca-bundle.crt DESTINATION ${DATA_INSTALL_DIR}/kssl ) diff --git a/kio/kssl/ksslconfig.h.cmake b/kio/kssl/ksslconfig.h.cmake new file mode 100644 index 000000000..1be6bbba4 --- /dev/null +++ b/kio/kssl/ksslconfig.h.cmake @@ -0,0 +1,26 @@ +/* This file is part of the KDE project + * + * Copyright (C) 2002 George Staikos <staikos@kde.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +#ifndef KSSLCONFIG_H +#define KSSLCONFIG_H + +#cmakedefine KSSL_HAVE_SSL 1 + +#endif |