remove librsvg dependency, since raven now has SvgWidget
This commit is contained in:
parent
2e6940b63a
commit
0b287f755b
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,6 @@ File Manager is a simple file manager made using Raven.
|
|||
# Dependencies
|
||||
|
||||
- [raven](https://git.hippoz.xyz/hippoz/raven)
|
||||
- librsvg
|
||||
|
||||
# Hacking
|
||||
|
||||
|
|
|
@ -5,12 +5,13 @@ project(
|
|||
)
|
||||
|
||||
raven_dep = dependency('raven')
|
||||
librsvg_dep = dependency('librsvg-2.0')
|
||||
|
||||
executable(
|
||||
'filemanager',
|
||||
'./src/FileButton.cpp',
|
||||
'./src/DirectoryView.cpp',
|
||||
'./src/TopBar.cpp',
|
||||
'./src/AppWidget.cpp',
|
||||
'./src/main.cpp',
|
||||
dependencies : [raven_dep, librsvg_dep]
|
||||
dependencies : [raven_dep]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue