Building progams without needing to specify libraries and source files? #9681
Answered
by
eli-schwartz
Shadowblitz16
asked this question in
Q&A
-
Is it possible to add support for building directly from a main file without needing to specify every single file and library used? Example:
|
Beta Was this translation helpful? Give feedback.
Answered by
eli-schwartz
Dec 1, 2021
Replies: 1 comment
-
meson is not going to parse your main.c and figure out what functions it makes use of. I don't know what the .net build system does... What I do know is that meson provides functionality to get you most of the way there, by generating a project.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
eli-schwartz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
meson is not going to parse your main.c and figure out what functions it makes use of. I don't know what the .net build system does...
What I do know is that meson provides functionality to get you most of the way there, by generating a project.