mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 01:42:58 +01:00
332655cb52
The use of `PACKAGE_NAME` for the project's variable name is problematic, as this name is commonly used in CMake's interface variables. If third-party CMake code handles with scopes improperly, our `PACKAGE_NAME` variable could end up with an unexpected value. This change avoids such conflicts by renaming all `PACKAGE_*` variables to `CLIENT_*`.
12 lines
382 B
PkgConfig
12 lines
382 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}
|
|
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
|
|
|
|
Name: @CLIENT_NAME@ kernel library
|
|
Description: Experimental library for the Bitcoin Core validation engine.
|
|
Version: @CLIENT_VERSION_STRING@
|
|
Libs: -L${libdir} -lbitcoinkernel
|
|
Libs.private: -L${libdir} @LIBS_PRIVATE@
|
|
Cflags: -I${includedir}
|