-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ibase: Fix the compilation and include it again so it can be detected
Change-Id: I38721155f090173862da8beab8cb04b2e015dcff Reviewed-by: Christian Ehrlicher <[email protected]>
- Loading branch information
1 parent
fe7cbf8
commit feb2045
Showing
5 changed files
with
87 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#.rst: | ||
# FindInterbase | ||
# --------- | ||
# | ||
# Try to locate the Interbase client library. | ||
# If found, this will define the following variables: | ||
# | ||
# ``Interbase_FOUND`` | ||
# True if the Interbase library is available | ||
# ``Interbase_INCLUDE_DIR`` | ||
# The Interbase include directories | ||
# ``Interbase_LIBRARY`` | ||
# The Interbase libraries for linking | ||
# | ||
# If ``Interbase_FOUND`` is TRUE, it will also define the following | ||
# imported target: | ||
# | ||
# ``Interbase::Interbase`` | ||
# The Interbase client library | ||
|
||
find_path(Interbase_INCLUDE_DIR | ||
NAMES ibase.h | ||
HINTS ${Interbase_INCLUDEDIR} | ||
) | ||
|
||
find_library(Interbase_LIBRARY | ||
NAMES firebase_ms fbclient gds | ||
HINTS ${Interbase_LIBDIR} | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Interbase DEFAULT_MSG Interbase_LIBRARY Interbase_INCLUDE_DIR) | ||
|
||
if(Interbase_FOUND) | ||
set(Interbase_INCLUDE_DIRS "${Interbase_INCLUDE_DIR}") | ||
set(Interbase_LIBRARIES "${Interbase_LIBRARY}") | ||
if(NOT TARGET Interbase::Interbase) | ||
add_library(Interbase::Interbase UNKNOWN IMPORTED) | ||
set_target_properties(Interbase::Interbase PROPERTIES | ||
IMPORTED_LOCATION "${Interbase_LIBRARIES}" | ||
INTERFACE_INCLUDE_DIRECTORIES "${Interbase_INCLUDE_DIRS};") | ||
endif() | ||
endif() | ||
|
||
mark_as_advanced(Interbase_INCLUDE_DIR Interbase_LIBRARY) | ||
|
||
include(FeatureSummary) | ||
set_package_properties(Interbase PROPERTIES | ||
URL "https://www.embarcadero.com/products/interbase" | ||
DESCRIPTION "Interbase client 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
qt_internal_add_plugin(QIBaseDriverPlugin | ||
OUTPUT_NAME qsqlibase | ||
TYPE sqldrivers | ||
SOURCES | ||
main.cpp | ||
qsql_ibase.cpp qsql_ibase_p.h | ||
DEFINES | ||
QT_NO_CAST_FROM_ASCII | ||
QT_NO_CAST_TO_ASCII | ||
PUBLIC_LIBRARIES | ||
Interbase::Interbase | ||
Qt::Core | ||
Qt::CorePrivate | ||
Qt::SqlPrivate) |
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