Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Okteta
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Utilities
Okteta
Commits
b374a8e4
Commit
b374a8e4
authored
May 01, 2014
by
Friedrich W. H. Kossebau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore FindQCA2.cmake from kdesupport4/attic and adapt to Qt5 version
parent
6b069710
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
3 deletions
+56
-3
CMakeLists.txt
CMakeLists.txt
+3
-3
cmake/modules/FindQCA2.cmake
cmake/modules/FindQCA2.cmake
+53
-0
No files found.
CMakeLists.txt
View file @
b374a8e4
...
...
@@ -6,7 +6,7 @@ set(QT_MIN_VERSION "5.2.0")
find_package
(
ECM 0.0.8 REQUIRED NO_MODULE
)
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
ECM_MODULE_PATH
}
${
ECM_KDE_MODULE_DIR
}
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
"
${
CMAKE_SOURCE_DIR
}
/cmake/modules"
${
ECM_MODULE_PATH
}
${
ECM_KDE_MODULE_DIR
}
)
include
(
ECMInstallIcons
)
include
(
FeatureSummary
)
...
...
@@ -56,9 +56,9 @@ if( UNIX )
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wall -std=c++0x -fno-rtti"
)
endif
()
find_package
(
QCA2
)
find_package
(
QCA2
2.1.0
)
set_package_properties
(
QCA2 PROPERTIES DESCRIPTION
"Qt Cryptographic Architecture"
URL
"http
://delta.affinix.com
/qca"
TYPE OPTIONAL
URL
"http
s://projects.kde.org/projects/kdesupport
/qca"
TYPE OPTIONAL
PURPOSE
"Needed for most of the algorithms of the checksum tool"
)
# control build scope
...
...
cmake/modules/FindQCA2.cmake
0 → 100644
View file @
b374a8e4
# - Try to find QCA2 (Qt Cryptography Architecture 2)
# Once done this will define
#
# QCA2_FOUND - system has QCA2
# QCA2_INCLUDE_DIR - the QCA2 include directory
# QCA2_LIBRARIES - the libraries needed to use QCA2
# QCA2_DEFINITIONS - Compiler switches required for using QCA2
#
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
# Copyright (c) 2006, Michael Larouche, <michael.larouche@kdemail.net>
# Copyright (c) 2014, Friedrich W. H. Kossebau, <kossebau@kde.org>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
if
(
NOT WIN32
)
find_package
(
PkgConfig QUIET
)
pkg_check_modules
(
PC_QCA2 QUIET qca2
)
set
(
QCA2_DEFINITIONS
${
PC_QCA2_CFLAGS_OTHER
}
)
endif
(
NOT WIN32
)
find_library
(
QCA2_LIBRARIES
WIN32_DEBUG_POSTFIX d
NAMES qca
HINTS
${
PC_QCA2_LIBDIR
}
${
PC_QCA2_LIBRARY_DIRS
}
)
find_path
(
QCA2_INCLUDE_DIR QtCrypto
HINTS
${
PC_QCA2_INCLUDEDIR
}
${
PC_QCA2_INCLUDE_DIRS
}
PATH_SUFFIXES QtCrypto
)
find_file
(
QCA2_VERSION_FILE
QtCrypto/qca_version.h
HINTS
${
QCA2_INCLUDE_DIR
}
)
if
(
QCA2_VERSION_FILE
)
file
(
READ
${
QCA2_VERSION_FILE
}
QCA2_VERSION_CONTENT
)
string
(
REGEX MATCH
"QCA_VERSION_STR
\"
.*
\"\n
"
QCA2_VERSION_MATCH
"
${
QCA2_VERSION_CONTENT
}
"
)
if
(
QCA2_VERSION_MATCH
)
string
(
REGEX REPLACE
"QCA_VERSION_STR
\"
(.*)
\"\n
"
"
\\
1"
QCA2_VERSION
${
QCA2_VERSION_MATCH
}
)
endif
(
QCA2_VERSION_MATCH
)
endif
(
QCA2_VERSION_FILE
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
QCA2 REQUIRED_VARS QCA2_LIBRARIES QCA2_INCLUDE_DIR
VERSION_VAR QCA2_VERSION
)
mark_as_advanced
(
QCA2_INCLUDE_DIR QCA2_LIBRARIES
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment