aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2018-02-12Add missing code blockAndrea G1-0/+4
2018-02-11Update Users.mdAmit D1-0/+6
2018-02-11Re-link remaining github wiki urls to mesonbuild.com siteSami Kerola5-6/+6
2018-02-08Fix filename.Jussi Pakkanen1-1/+1
2018-02-08Don't use --export-dynamic on CygwinJon Turney1-1/+1
After PR #2662, running test case common/125 shared module/ on Cygwin gets me: $ ninja -C _build ninja: Entering directory `_build' [7/7] Linking target prog.exe. /usr/lib/gcc/x86_64-pc-cygwin/6.4.0/../../../../x86_64-pc-cygwin/bin/ld: warning: --export-dynamic is not supported for PE+ targets, did you mean --export-all-symbols? Also, fix doc for correct version of first apperance. Future work: Notwithstanding the hint that ld gives, these options are not equivalent, and it's not clear we should be using it here: --export-all-symbols is the default behaviour, and if the exports are restricted by explicit annotations or a .def file, this option might be overriding that...
2018-02-08Fixed typoMartin Dagarin1-1/+1
Fixed typo in section Other install commands, typo was in extension of data file
2018-02-08Update Users.mdAmit D1-0/+1
2018-02-08Add get_pkgconfig_variable(default:)Jon Turney1-0/+2
Also use that to squelch the warning for internal uses which handle the variable missing case (just gnome at the moment) A follow up to PR #2914
2018-02-08Add wlroots to Users.mdAmit D1-0/+1
2018-02-08Add style guide documentation.Jussi Pakkanen2-0/+37
2018-02-08User options can "yield to" a user option of the same name in superproject. ↵Jussi Pakkanen2-0/+26
Closes ##2853.
2018-02-07Add GETTEXT_PACKAGE as project argumentPeter Uithoven1-2/+2
2018-02-07Expose integer options to build option files.Jussi Pakkanen2-0/+13
2018-02-05Merge pull request #3010 from sarum9in/elide_directoryJussi Pakkanen2-1/+45
Add strip_directory keyword for install_subdir() function
2018-02-05Add support for hex int literals.Jussi Pakkanen2-0/+11
2018-02-05Use text keyword for directory example code blocksAleksey Filippov1-5/+5
2018-02-05Add strip_directory=true example for multi-component pathAleksey Filippov1-0/+6
2018-02-05Fix misprint in strip_directory exampleAleksey Filippov1-1/+1
2018-02-05Clarify multi-component source directory behavior of install_subdir()Aleksey Filippov1-0/+8
2018-02-05Rename install_subdir() option elide_directory to strip_directoryAleksey Filippov3-8/+8
2018-02-05Add elide_directory keyword for install_subdir() functionAleksey Filippov2-1/+31
If elide_directory=true install_subdir() installs directory contents instead of directory itself, eliding name of the source directory. Closes #2869.
2018-02-04Fix run target documentation. Closes #1793.Jussi Pakkanen1-2/+5
2018-02-04Merge pull request #2938 from acfoltzer/rust-cross-mergeJussi Pakkanen1-0/+16
Add cross-compilation support for `rustc`
2018-02-02Merge pull request #2228 from mesonbuild/icestormJussi Pakkanen3-0/+40
IceStorm FPGA experiment
2018-02-02Added dpdk to the list of users.Jussi Pakkanen1-0/+1
2018-02-02Added documentation to IceStorm module.Jussi Pakkanen3-0/+40
2018-02-02Updated the video page.Jussi Pakkanen1-25/+19
2018-01-31add meson.project_license() builtinMartin Kelly2-1/+8
This Fixes #2941.
2018-01-31Add PipeWire to the list of users. Closes #2986.Jussi Pakkanen1-0/+1
2018-01-31docs: Fix some HTML that leaked into the markdownAdam Jackson1-1/+1
Signed-off-by: Adam Jackson <ajax@redhat.com>
2018-01-31Localisation documentation alternativePeter Uithoven1-16/+36
I had trouble figuring this out in a new project without the pot and po files. Seemed like there was a build in method to generate those. I understand that I might have made a few controversial choices like using a `LINGUAS` file and creating a sub `meson.build` file. I also don't fully understand why the `GETTEXT_PACKAGE` global wasn't mentioned.
2018-01-29Add cross-compilation support for `rustc`Adam C. Foltzer1-0/+16
This patch is largely modeled on the relatively-straightforward code for Fortran cross-compilation, so there might be some intricacies missing.
2018-01-30docs: Add 'outlier' to usersSami Kerola1-0/+1
This is a very small hello world style project, that I hope is useful example for people who are getting started with meson.
2018-01-30dependencies: Allow setting config-tool binaries in cross fileDylan Baker1-0/+13
This allows for much easier cross compiler configuration for tools like LLVM. This patch does honor the 'native' keyword, and falls back to searching PATH if the binary name is not specified. I'd be fine with either removing the fallback behavior, or marking it as deprecated and removing it later. Fixes #2921
2018-01-30Taisei Project uses MesonAndrei Alexeyev1-0/+1
2018-01-27Fix typo in reference tablesxknight1-1/+1
The possessive form of "its" does not contain an apostrophe.
2018-01-22Typo.Stefan Seering1-1/+1
2018-01-19Correct spelling mistakes.Edward Betts1-1/+1
2018-01-18docs: Add Mesa, Libdrm, and IGT as meson usersDylan Baker1-0/+3
2018-01-17Removed two deprecations from 2016.Jussi Pakkanen1-0/+14
2018-01-17docs: Document the `main` keyword of the `gtest` framework dependencyRaphael Salamon1-0/+7
2018-01-14Move version info away from header.Jussi Pakkanen1-1/+3
2018-01-13Merge pull request #2815 from taisei-project/fix_windows_compile_resourcesJussi Pakkanen1-0/+3
[windows] make compile_resources use custom targets instead of generators
2018-01-13Merge pull request #2764 from mesonbuild/generatorpathJussi Pakkanen2-3/+31
Generator outputs can have path segments
2018-01-12Add a release note snippet for the windows.compile_resources() changeAndrei Alexeyev1-0/+3
2018-01-09Merge pull request #2803 from dcbaker/wip/freebsd-fixesJussi Pakkanen1-0/+3
various BSD fixes
2018-01-09Add `export_dynamic` argument to `executable`. (#2662)Nikita Churaev1-3/+13
2018-01-06docs: Add netbsd to the reference tableDylan Baker1-0/+1
2018-01-06docs: Add dragonfly BSD to OS reference tableDylan Baker1-0/+1
2018-01-06docs: Add freebsd to the reference tableDylan Baker1-0/+1