python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Using Meson custom_target.full_path() while expressing an internal dependency
I'm trying to use Meson to build an executable that embeds another binary in its data section, using gas' incbin directive, something like this:
magic_bin_start:
.incbin MAGIC_BIN_PATH
magic_bin_e...

ab.
Votes: 0
Answers: 0
How to include library with meson?
I want to add the INHI library (which use meson too) to my project but I don't know how to.
The project tree :
Project/
- meson.build
- src/
- - meson.build
- - inih/
- - main.c
The root meson.build ...
Lukkyz
Votes: 0
Answers: 1
Get Msys2 package for meson project in Windows
Let me assume that I wanna use curl package in msys2 for my C++ project.
So I add msys2 path to %Path% in system environment.
and I write my meson.build file like below:
project('tutorial', 'cpp')
m...
WOOSEOK CHOI
Votes: 0
Answers: 1