summaryrefslogtreecommitdiff
path: root/test cases/unit/35 dist script/subprojects
AgeCommit message (Collapse)Author
2024-08-15unittests: fix git dist test on Windows with Python < 3.8Dylan Baker
pathlib.Path objects are not supported in subprocess calls on Windows before Python 3.8, so we must convert to a string.
2024-02-12Add MESONREWRITE to `meson dist` scriptsJouke Witteveen
Fixes #688
2022-03-24Make compilers list per subprojectXavier Claessens
Previously subprojects inherited languages already added by main project, or any previous subproject. This change to have a list of compilers per interpreters, which means that if a subproject does not add 'c' language it won't be able to compile .c files any more, even if main project added the 'c' language. This delays processing list of compilers until the interpreter adds the BuildTarget into its list of targets. That way the interpreter can add missing languages instead of duplicating that logic into BuildTarget for the cython case.
2021-03-18Allow add_dist_script() in subprojectsXavier Claessens
Fixes: #8440.