Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
annacrombie committed Dec 7, 2024
1 parent bd5c52b commit 8c32c95
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ project(
'glad',
'glfw3',
'imgui',
]
],
},
)

Expand Down
9 changes: 6 additions & 3 deletions src/ui/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ add_languages('cpp')
deps += [
dependency('glad'),
dependency('glfw3'),
dependency('imgui', default_options: {
'imgui_user_config': meson.project_source_root() / 'include/ui/imconfig.h',
}),
dependency(
'imgui',
default_options: {
'imgui_user_config': meson.project_source_root() / 'include/ui/imconfig.h',
},
),
]

src += files(
Expand Down

0 comments on commit 8c32c95

Please sign in to comment.