Questions tagged [meson-build]

Meson is a build configuration system used to build C/C++, Java, Rust, Objective-C/C++, and Fortran projects. It uses a DSL to describe project targets. This tag is for questions about the meson build system and DSL syntax or usage.

Meson is a build configuration system used to build C/C++, Java, Rust, Objective-C/C++, and Fortran.

It is conceptually similar to MPC or CMake, and draws strengths from them as well as SCons, Autoconf.

Project targets are described using a non-Turing complete DSL. Despite being implemented in Python, no direct calls into Python are permitted, nor is any Python syntax directly supported. Strictly speaking, the Meson processor could be reimplemented in any language and would be able to handle the DSL without assistance from an embedded Python interpreter.

For more information about Meson, see their home page. To contribute, see their source code repository on github.com.

469 questions
-1
votes
1 answer

How to compile GTK3 Libray and up with Cmake instead of meson

I like to compile the GTK3 Library with cmake instead of meson as mason Meson needs Python11.dll(windows 10 or higher) and MSYS2 requires Windows 8 or higher eventually i like to switch to Linux fully so im trying to avoid WinspyOS/Updateshell
Hazmat
  • 38
  • 5
-1
votes
1 answer

Compiling skimage from source on Windows 10

I've spent my whole day trying to get skimage building from source on my machine Windows 10. Compiler errors related to "-Wno" flags and C++ template errors "Compiler error C2559 'identifier': cannot overload a member function without ref-qualifier…
-1
votes
1 answer

Python: word between at sign (@)

In this script from one of the linux applications I use, I see words between the "@" sign such as @devel@, and @gtk_major_version@. I would like to know what those are called, their functions in Python, and why the script has ".in" extension instead…
-2
votes
1 answer

meson.build: ERROR: File does not exist, while in reality it does

From a trivial meson.build file, I get the following error: meson.build:27:0: ERROR: File dataStructures.hpp does not exist. dataStructures.hpp, The meson.build file is: headers += [ 'dataStructures.hpp', 'interface.hpp', …
Pietro
  • 12,086
  • 26
  • 100
  • 193
1 2 3
31
32