1# this template is filled-in by CMake `configure_file(... @ONLY)`
2# the `@....@` are filled in by CMake configure_file(),
3# from variables set in your CMakeLists.txt or by CMake itself
4#
5# Good tutoral for understanding .pc files:
6# https://people.freedesktop.org/~dbn/pkg-config-guide.html
7
8prefix="@CMAKE_INSTALL_PREFIX@"
9exec_prefix="${prefix}"
10libdir="${prefix}/lib"
11includedir="${prefix}/include"
12
13Name: @PROJECT_NAME@
14Description: @CMAKE_PROJECT_DESCRIPTION@
15URL: @CMAKE_PROJECT_HOMEPAGE_URL@
16Version: @PROJECT_VERSION@
17Requires: @pc_req_public@
18Requires.private: @pc_req_private@
19Cflags: -I"${includedir}"
20Libs: -L"${libdir}" -l@libteectgt@
21Libs.private: -L"${libdir}" -l@libteectgt@ @pc_libs_private@
22