Replies: 2 comments 1 reply
-
|
As an aside, you're re-assigning the controllers_dep = declare_dependency(
sources: controllers_sources,
include_directories: include_directories('.'),
)
controllers_dep = [
dependency('gtk4', version: '>=4.0'),
]Should be: controllers_dep = declare_dependency(
sources: controllers_sources,
include_directories: include_directories('.'),
dependencies: dependency('gtk4', version: '>=4.0'),
]I think the problem you're reporting is that the |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Figured out a way around this, and handled the include statements better. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm currently trying to build a package, and I've generated some files and added it to the sources for the package I'm trying to build and I noticed that the files are generated first before any other part of the build runs - verbose output confirms this - but the definitions in the generated file can't be used or included by any other file for some reason.
I've cut the log to just the important parts;
The first step shows the files are generated first, and then the usage of these files throw an error.
The
meson.buildfile;Beta Was this translation helpful? Give feedback.
All reactions