-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libteeacl: add pkgconfig file: teeacl.pc
Add a pkgconfig file to libteeacl, so that the library and its headers can be found from wherever they have been installed. Signed-off-by: Eero Aaltonen <[email protected]> Acked-by: Jerome Forissier <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 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
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,12 @@ | ||
prefix="@CMAKE_INSTALL_PREFIX@" | ||
exec_prefix="${prefix}" | ||
libdir="${prefix}/lib" | ||
includedir="${prefix}/include" | ||
|
||
Name: @PROJECT_NAME@ | ||
Description: Access Control List utilities for teec library | ||
URL: @CMAKE_PROJECT_HOMEPAGE_URL@ | ||
Version: @PROJECT_VERSION@ | ||
Requires: uuid >= 2.34 | ||
Cflags: -I"${includedir}" | ||
Libs: -L"${libdir}" -lteeacl |