summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
AgeCommit message (Collapse)Author
2020-02-05pkgconfig: Generate -uninstalled.pc filesXavier Claessens
Closes: #3472.
2020-02-02add feature noteMichael
2020-01-31docs: Add snippet for zlib system dependencyDylan Baker
2020-01-27Tell contributors not to write things in the snippet help file. [skip ci]Jussi Pakkanen
2020-01-27Only provide 64 bit MSIs going forward. [skip ci]Jussi Pakkanen
2020-01-26Support multiple args to message() and warning()Xavier Claessens
2020-01-22envconfig: add pkg_config_libdir propertyStéphane Cerveau
In order to unify the use of sysroot in the cross-file, the pkg_config_libdir can now be passed directly in the file.
2020-01-07Prepare new release.Jussi Pakkanen
2019-12-22cmake: Fix obeject librariesDaniel Mensinger
This fixes an issue with generated sources and object libraries, as well as an issue on windows with the `link` linker and the vs backend. The last issue is resolved by building the source files multiple times to avoid extracting object files in meson.
2019-12-19summary: Change 'section' to be a kwarg instead of positionalXavier Claessens
Fixes: #6372.
2019-12-19add compiler.get_linker_id() methodMichael Hirsch, Ph.D
this can be useful for if/elif where linker behaviors must be considered. For example, clang with "link" vs gcc with "ld.bfd" etc. ci for compiler.get_linker_id() method doc add @FeatureNew check Co-Authored-By: Daniel Mensinger <daniel@mensinger-ka.de>
2019-12-18python: add embed to the python dependency functionDaniel Mensinger
2019-12-18Merge pull request #4649 from dcbaker/summary-functionJussi Pakkanen
Add a summary() function for configuration summarization
2019-12-12Add a summary() function for configuration summarizationXavier Claessens
Based on patch from Dylan Baker. Fixes #757
2019-12-13mintro: include test protocol in introspection dataPaolo Bonzini
2019-12-11Merge pull request #6207 from dcbaker/linker-optionJussi Pakkanen
Add a way to select the dynamic linker meson uses
2019-12-10mintro: Add version key to --scan-dependencies (fixes #6287)Daniel Mensinger
2019-12-08dist: Add --include-subprojects optionXavier Claessens
2019-12-07Merge pull request #6228 from scivision/scalapackJussi Pakkanen
deps: add Scalapack
2019-12-05find_program(): Add 'dirs' keyword argumentXavier Claessens
Fixes: #1576
2019-12-04dict: Fully evaluate keysXavier Claessens
The only restriction is keys must be string after evaluation. This fix various inconsistencies.
2019-12-02Allow selecting the dynamic linkerDylan Baker
This uses the normal meson mechanisms, an LD environment variable or via cross/native files. Fixes: #6057
2019-11-30deps: add scalapackMichael Hirsch, Ph.D
Scalapack uses a library stack that can be challenging to manage. Not least of all since many Scalapacks ship with broken / incomplete pkg-config files and CMake FindScalapack.cmake This resolves those issues for typical Scalapack setups including: * Linux: Intel MKL or OpenMPI + Netlib * MacOS: Intel MKL or OpenMPI + Netlib * Windows: Intel MKL (OpenMPI not available on Windows)
2019-11-25complete gfortran/intel/intel-cl fortran_std testMichael Hirsch, Ph.D
2019-11-14mintro: dependencies: added version keyDaniel Mensinger
2019-11-12Adding dictionary entry using string variable as key.franczc
2019-11-08Created the filesystem module.Jussi Pakkanen
2019-11-05dependency('cuda')Aleksey Gurtovoy
2019-11-02Minit templates modularizationMichael Hirsch, Ph.D
2019-11-02Add option for controlling RTTI.Jussi Pakkanen
2019-10-22Add source tags targetsMarc-André Lureau
2019-10-06Updated version numbers for 0.52.0 release.Jussi Pakkanen
2019-10-06Merge pull request #5953 from mensinda/isystemJussi Pakkanen
Add is_system to dependency
2019-10-04mtest: add gdb_path optionGerion Entrup
When using the '--gdb' argument of meson test the executed binary can now be specified with '--gdb-path'. Closing: #4373
2019-10-03Use include_type instead of is_systemDaniel Mensinger
2019-10-03added docsDaniel Mensinger
2019-10-01Add clang-tidy target. Closes #2383.Jussi Pakkanen
2019-10-01doc: Add release snippet for the rework of static librariesXavier Claessens
2019-09-30Add depfile to configure_file()Marc-André Lureau
In qemu, minikconf generates a depfile that meson could use to automatically reconfigure on dependency change. Note: someone clever can perhaps find a way to express this with a ninja rule & depfile=. I didn't manage, so I wrote a simple depfile parser.
2019-09-29Add support for `depth` option in wrap-gitChristoph Weiss
This allows cloning subprojects shallowly. It works recursively for a subproject's submodules in case `clone-recursive` is set to `true`.
2019-09-29environment: Support taking values from dictMarc-André Lureau
Related to #5955.
2019-09-29Moved changes from preliminary relnote page to snippets. [skip ci]Jussi Pakkanen
2019-09-17configure_file(): Allow multiple inputs in command modeXavier Claessens
Closes: #5893
2019-09-09docs: Add a snippet about illumos and Solaris support improvementsDylan Baker
2019-08-14docs: add snippet for l_undef on appleDylan Baker
I didn't really mean to, but in splitting the linkers and compilers I got this all working.
2019-08-14docs: Add snippet for compiler linker splitDylan Baker
2019-08-05Add basic Webassembly support via Emscripten.Jussi Pakkanen
2019-08-04Make gettext targets no-ops if gettext is not installed. Closes: #821.Jussi Pakkanen
2019-08-04sourceset: add all_dependencies() methodMarc-André Lureau
'if_true' sources should be built with their dependencies, as illustrated by test case change. Ideally, I think we would want only the files with the dependencies to be built with the flags, but that would probably change the way sourceset are used.
2019-07-31Allow kconfig to read from configure_file()Marc-André Lureau
At configure time, kconfig can read from configure_file(). "test cases/kconfig/4 load_config builddir/meson.build" was already showing a workaround, now it actually can take configure_file input directly.