Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Arist
firmware
Commits
4b809ff5
Verified
Commit
4b809ff5
authored
Jun 08, 2019
by
Rahix
Browse files
refactor(card10): Deduplicate dependencies
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
c510dfb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/card10/meson.build
View file @
4b809ff5
...
...
@@ -9,11 +9,7 @@ sources = files(
'pmic.c',
)
lib = static_library(
'card10',
sources,
include_directories: includes,
dependencies: [
deps = [
bhy1,
bma400,
bme680,
...
...
@@ -21,20 +17,17 @@ lib = static_library(
libgfx,
max77650,
periphdriver,
],
]
lib = static_library(
'card10',
sources,
include_directories: includes,
dependencies: deps,
)
libcard10 = declare_dependency(
include_directories: includes,
link_with: lib,
dependencies: [
bhy1,
bma400,
bme680,
board_card10,
libgfx,
max32665_rt,
max77650,
periphdriver,
],
dependencies: deps + [max32665_rt],
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment