forked from open-eid/DigiDoc4-Client
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove cmake submodule (open-eid#1316)
IB-8354 Signed-off-by: Raul Metsma <[email protected]>
- Loading branch information
Showing
14 changed files
with
103 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "cmake"] | ||
path = cmake | ||
url = ../cmake | ||
[submodule "common"] | ||
path = common | ||
url = ../qt-common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cmake
deleted from
043e0e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# - Try to find the LDAP client libraries | ||
# Once done this will define | ||
# | ||
# LDAP_FOUND - system has libldap | ||
# LDAP_INCLUDE_DIR - the ldap include directory | ||
# LDAP_LIBRARIES - libldap + liblber library | ||
|
||
set(CMAKE_FIND_FRAMEWORK LAST) | ||
find_path(LDAP_INCLUDE_DIR ldap.h Winldap.h) | ||
find_library(LDAP_LIBRARY NAMES ldap Wldap32) | ||
find_library(LBER_LIBRARY NAMES lber) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LDAP DEFAULT_MSG LDAP_LIBRARY) | ||
|
||
if(LDAP_FOUND) | ||
if(LBER_LIBRARY) | ||
set(LDAP_LIBRARIES ${LDAP_LIBRARY} ${LBER_LIBRARY}) | ||
else() | ||
set(LDAP_LIBRARIES ${LDAP_LIBRARY}) | ||
endif() | ||
endif() | ||
|
||
mark_as_advanced(LDAP_INCLUDE_DIR LDAP_LIBRARY LBER_LIBRARY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Upstream-Contact: [email protected] | |
Source: https://github.com/open-eid/DigiDoc4-Client | ||
|
||
Files: * | ||
Copyright: 2017-2024 Estonian Information System's Authority | ||
Copyright: 2017-2025 Estonian Information System's Authority | ||
License: LGPL-2.1 | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters