mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Add pkg-config file (#4368)
* Add pkg-config file * Copy z3.cmake.in to the Docker for CI
This commit is contained in:
parent
1729232254
commit
7e84a48069
|
@ -568,6 +568,9 @@ write_basic_package_version_file("${PROJECT_BINARY_DIR}/Z3ConfigVersion.cmake"
|
||||||
COMPATIBILITY SameMajorVersion
|
COMPATIBILITY SameMajorVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/z3.pc.cmake.in"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/z3.pc" @ONLY)
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Create `Z3Config.cmake` and related files for install tree so clients can use
|
# Create `Z3Config.cmake` and related files for install tree so clients can use
|
||||||
# Z3 via CMake.
|
# Z3 via CMake.
|
||||||
|
@ -610,6 +613,12 @@ install(
|
||||||
DESTINATION "${CMAKE_INSTALL_Z3_CMAKE_PACKAGE_DIR}"
|
DESTINATION "${CMAKE_INSTALL_Z3_CMAKE_PACKAGE_DIR}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Add install rule to install ${PROJECT_BINARY_DIR}/z3.pc
|
||||||
|
install(
|
||||||
|
FILES "${PROJECT_BINARY_DIR}/z3.pc"
|
||||||
|
DESTINATION "${CMAKE_INSTALL_PKGCONFIGDIR}"
|
||||||
|
)
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Examples
|
# Examples
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -75,7 +75,7 @@ ADD /doc ${Z3_SRC_DIR}/doc/
|
||||||
ADD /examples ${Z3_SRC_DIR}/examples/
|
ADD /examples ${Z3_SRC_DIR}/examples/
|
||||||
ADD /scripts ${Z3_SRC_DIR}/scripts/
|
ADD /scripts ${Z3_SRC_DIR}/scripts/
|
||||||
ADD /src ${Z3_SRC_DIR}/src/
|
ADD /src ${Z3_SRC_DIR}/src/
|
||||||
ADD *.txt *.md RELEASE_NOTES ${Z3_SRC_DIR}/
|
ADD *.txt *.md *.cmake.in RELEASE_NOTES ${Z3_SRC_DIR}/
|
||||||
|
|
||||||
ADD \
|
ADD \
|
||||||
/contrib/ci/scripts/build_z3_cmake.sh \
|
/contrib/ci/scripts/build_z3_cmake.sh \
|
||||||
|
|
13
z3.pc.cmake.in
Normal file
13
z3.pc.cmake.in
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
prefix=@CMAKE_INSTALL_PREFIX@
|
||||||
|
exec_prefix=@CMAKE_INSTALL_PREFIX@
|
||||||
|
libdir=@CMAKE_INSTALL_LIBDIR@
|
||||||
|
sharedlibdir=@CMAKE_INSTALL_LIBDIR@
|
||||||
|
includedir=@CMAKE_INSTALL_INCLUDEDIR@
|
||||||
|
|
||||||
|
Name: z3
|
||||||
|
Description: The Z3 Theorem Prover
|
||||||
|
Version: @VERSION@
|
||||||
|
|
||||||
|
Requires:
|
||||||
|
Libs: -L${libdir} -L${sharedlibdir} -lz3
|
||||||
|
Cflags: -I${includedir}
|
Loading…
Reference in a new issue