Skip to content

Commit

Permalink
Merge pull request #37 from TytanRock/dependency-fix
Browse files Browse the repository at this point in the history
Fixing dependencies
  • Loading branch information
TytanRock committed Jul 21, 2021
2 parents d74e4be + f272288 commit 50a9b21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ else
endif

gtkdep = dependency('gtk+-3.0')
curldep = dependency('libcurl')
sshdep = dependency('libssh')

src = [ 'src/application.c',
'src/robot_controller.c',
Expand All @@ -34,7 +36,7 @@ executable(meson.project_name(),
gresources,
src,
include_directories : inc,
dependencies : [gtkdep],
dependencies : [gtkdep, curldep, sshdep],
install: true,
install_dir: 'bin',
objects: backend)
Expand Down

0 comments on commit 50a9b21

Please sign in to comment.