mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
19 lines
574 B
PkgConfig
19 lines
574 B
PkgConfig
|
# this template is filled-in by CMake `configure_file(... @ONLY)`
|
||
|
# the `@....@` are filled in by CMake configure_file(),
|
||
|
# from variables set in your CMakeLists.txt or by CMake itself
|
||
|
#
|
||
|
# Good tutoral for understanding .pc files:
|
||
|
# https://people.freedesktop.org/~dbn/pkg-config-guide.html
|
||
|
|
||
|
prefix="@CMAKE_INSTALL_PREFIX@"
|
||
|
exec_prefix="${prefix}"
|
||
|
libdir="${prefix}/lib"
|
||
|
includedir="${prefix}/include"
|
||
|
|
||
|
Name: @PROJECT_NAME@
|
||
|
Description: @PROJECT_DESCRIPTION@
|
||
|
URL: @PROJECT_HOMEPAGE_URL@
|
||
|
Version: @PROJECT_VERSION@
|
||
|
Libs: -L"${libdir}" -lminiupnpc
|
||
|
Cflags: -I"${includedir}"
|