| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-01-06 | Fixed flake8 | Daniel Mensinger | 2 | -2/+2 | |
| 2019-01-06 | Load coredata | Daniel Mensinger | 1 | -0/+4 | |
| 2019-01-06 | Absolute path generation refactoring | Daniel Mensinger | 11 | -5/+85 | |
| 2019-01-06 | Simplefied absolute path generation | Daniel Mensinger | 2 | -6/+7 | |
| 2019-01-06 | Better documentation | Daniel Mensinger | 1 | -2/+4 | |
| 2019-01-06 | Revert to old behavior | Daniel Mensinger | 1 | -4/+12 | |
| 2019-01-06 | Some small fixes | Daniel Mensinger | 2 | -5/+10 | |
| 2019-01-06 | Renamed `--force-new` to `--force-dict-output` | Daniel Mensinger | 1 | -3/+3 | |
| 2019-01-06 | Doc updates and throw if no target type is set | Daniel Mensinger | 2 | -14/+9 | |
| 2019-01-06 | Keep 'filename' and 'install_filename' as strings | Daniel Mensinger | 1 | -2/+3 | |
| 2019-01-06 | Simplified code and improved preformance | Daniel Mensinger | 1 | -26/+10 | |
| 2019-01-06 | Ninja backend target introspection | Daniel Mensinger | 3 | -19/+124 | |
| 2019-01-06 | Split the monolithic introspection file into chunks | Daniel Mensinger | 3 | -37/+38 | |
| 2019-01-06 | Documentation and unit test update | Daniel Mensinger | 1 | -6/+1 | |
| 2019-01-06 | Filenames are now lists | Daniel Mensinger | 2 | -5/+4 | |
| 2019-01-06 | Update intro dump on meson configure | Daniel Mensinger | 2 | -2/+20 | |
| 2019-01-06 | Added unit test | Daniel Mensinger | 5 | -7/+4 | |
| 2019-01-06 | Removed determine_installed_path since it is no longer needed | Daniel Mensinger | 1 | -19/+1 | |
| 2019-01-06 | Removed fallback detection logic | Daniel Mensinger | 3 | -173/+29 | |
| 2019-01-06 | Some code cleanup | Daniel Mensinger | 4 | -46/+98 | |
| 2019-01-06 | Moved the source and compiler generation to the backend | Daniel Mensinger | 3 | -135/+161 | |
| 2019-01-06 | Fixed list_target_files and list_targets | Daniel Mensinger | 5 | -37/+41 | |
| 2019-01-06 | More refactoring | Daniel Mensinger | 1 | -26/+45 | |
| 2019-01-06 | Added unit test | Daniel Mensinger | 1 | -1/+1 | |
| 2019-01-06 | Fixed rebase error | Daniel Mensinger | 1 | -2/+2 | |
| 2019-01-06 | Fixed tests and benchmarks | Daniel Mensinger | 3 | -6/+12 | |
| 2019-01-06 | Initial automatic target file generation | Daniel Mensinger | 3 | -21/+57 | |
| 2019-01-06 | Added option to force use the new format | Daniel Mensinger | 1 | -2/+4 | |
| 2019-01-06 | mintro: Added option to introspect multiple parameters at once | Daniel Mensinger | 1 | -27/+44 | |
| 2019-01-06 | Updated format to include sources | Daniel Mensinger | 1 | -13/+53 | |
| 2019-01-06 | Fixed hardcode is_cross = False | mensinda | 1 | -6/+5 | |
| 2019-01-06 | Added include_directories and extra_args keys to target introspection | Daniel Mensinger | 1 | -1/+78 | |
| 2019-01-05 | parser: Fix line continuation outside of (), [] or {} | Xavier Claessens | 1 | -1/+5 | |
| The documentation states: "In other cases you can get multi-line statements by ending the line with a \." but that seems to never have worked. Closes: #4720 | |||||
| 2019-01-05 | pkgconfig: Fix flag deduplication | Xavier Claessens | 1 | -1/+5 | |
| This is a regression introduced by 2cbf7caf5, generated pkg-config files have many duplicated '-pthread' flags. | |||||
| 2019-01-02 | Get rid of `ConfigData` | John Ericson | 2 | -40/+7 | |
| 2019-01-02 | Simplify config file checking code, inlining `_ok_type` | John Ericson | 1 | -13/+6 | |
| 2019-01-02 | Remove cross_info; cross file is parsed up front and discarded | John Ericson | 12 | -277/+314 | |
| 2019-01-02 | Get rid of `need_cross_compiler` | John Ericson | 4 | -23/+4 | |
| Building a cross compiler (`build == host != target`) is not cross compiling. As such, it doesn't make sense to handle it under `is_cross_build`. (N.B. Building a standard library for a cross compiler would require cross compiling, but Meson has support to do such a thing as part of a compiler build currently.) | |||||
| 2019-01-02 | Can use plain strings for include_directories. | Jussi Pakkanen | 1 | -1/+16 | |
| 2019-01-02 | Handle strings in cross file args. Closes #4671. | Jussi Pakkanen | 1 | -2/+2 | |
| 2019-01-02 | Avoid exception looking for python on windows if the launcher (py.exe) is ↵ | guruDanny67 | 1 | -0/+4 | |
| not installed | |||||
| 2019-01-02 | vs: respect 'b_pch' option | Nicolas Schneider | 1 | -14/+15 | |
| Fixes #4681. | |||||
| 2019-01-01 | print 'Nothing to install.' if nothing was installed | Nicolas Schneider | 1 | -0/+10 | |
| Fixes #882. | |||||
| 2019-01-01 | fail configuration if PCH files do not exist | Nicolas Schneider | 1 | -0/+3 | |
| Previously, the configuration worked fine, but the compiler raised an error. Now, we explicitly check for the existence of files and print a useful error message if they do not exist. | |||||
| 2019-01-01 | Merge pull request #4564 from mensinda/introBuildOpts | Jussi Pakkanen | 6 | -120/+315 | |
| mintro: Introspect --buildoptions without a build directory | |||||
| 2019-01-01 | compile pch .h file as c++-header when building a c++ target | Nicolas Schneider | 1 | -0/+4 | |
| Fixes #3641. | |||||
| 2018-12-29 | Do not require build dir for introspection | Daniel Mensinger | 1 | -4/+160 | |
| 2018-12-29 | Disable mlog and don't require build directory for environment | Daniel Mensinger | 2 | -18/+37 | |
| 2018-12-29 | Introspection refactoring | Daniel Mensinger | 4 | -98/+118 | |
| 2018-12-30 | Default libdir is "lib" when cross compiling. Closes #2535. | Jussi Pakkanen | 1 | -0/+8 | |
