diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-29 06:46:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-29 06:46:14 +0200 |
commit | a2204bee4723a7a5036d2b3b888984976c5a93e7 (patch) | |
tree | c06cf9fca2905c721e1bc31658ca8fd343c76f64 /doc | |
parent | ba8ddd80a4323eb85ee5a569295eb4e80986003f (diff) |
Rework pkg-config variable naming, use build2.metadata as general indicator
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index ab832fe..7b1e849 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -7789,7 +7789,7 @@ header-like search mechanism (\c{-I} paths, etc.), an explicit list of exported modules is provided for each library in its \c{.pc} (\c{pkg-config}) file. -Specifically, the library's \c{.pc} file contains the \c{cxx_modules} variable +Specifically, the library's \c{.pc} file contains the \c{cxx.modules} variable that lists all the exported C++ modules in the \c{<name>=<path>} form with \c{<name>} being the module's C++ name and \c{<path>} \- the module interface file's absolute path. For example: @@ -7800,15 +7800,15 @@ Version: 1.0.0 Cflags: Libs: -L/usr/lib -lhello -cxx_modules = hello.core=/usr/include/hello/core.mxx hello.extra=/usr/include/hello/extra.mxx +cxx.modules = hello.core=/usr/include/hello/core.mxx hello.extra=/usr/include/hello/extra.mxx \ Additional module properties are specified with variables in the -\c{cxx_module_<property>.<name>} form, for example: +\c{cxx.module_<property>.<name>} form, for example: \ -cxx_module_symexport.hello.core = true -cxx_module_preprocessed.hello.core = all +cxx.module_symexport.hello.core = true +cxx.module_preprocessed.hello.core = all \ Currently, two properties are defined. The \c{symexport} property with the |