Files
unison/buildsupport/pkgconfig_template.pc.in
Gabriel Ferreira bbe2128abe build: more ns3 and CMake fixes
Includes:
- inform ns3 user cmake was not found, or an unsupported version was found
- replace open-mpi environment variables with command-line arguments
- mark more variables as advanced
- add -v and --verbose option to run and only output the programs output by default
- fix scratch subdir prefixes and add tests
- prevent cmake crash when scratch sources do not have a main function
- disable MPI module by default
- wrap cmakelists_content in quotes to prevent failure of filter_libraries
- install pkgconfig files and add tests
- pkg-config generation (still missing installation)
- forward PYTHONPATH to modulegen
- fix dependency search for brite, click and openflow
2022-01-23 17:30:08 -03:00

13 lines
479 B
PkgConfig

exec_prefix="@CMAKE_INSTALL_FULL_BINDIR@"
libdir="@CMAKE_INSTALL_FULL_LIBDIR@"
includedir="@CMAKE_INSTALL_FULL_INCLUDEDIR@"
Name: ns3-@module_name@
Description: @CMAKE_PROJECT_DESCRIPTION@
URL: @CMAKE_PROJECT_HOMEPAGE_URL@
Version: @ns3_version@
Requires: @pkgconfig_public_required@
Requires.private: @pkgconfig_private_required@
Cflags: -I"${includedir}"
Libs: -L"${libdir}" -l@pkgconfig_target_lib@ @pkgconfig_public_libs@
Libs.private: -L"${libdir}" @pkgconfig_private_libs@