move assets -> data

master
al 1 year ago
parent 25e9e79159
commit d8a45f7e36
  1. 1
      .gitignore
  2. 0
      data/icons/org.sugol.books-16.png
  3. 0
      data/icons/org.sugol.books-256.png
  4. 0
      data/icons/org.sugol.books-32.png
  5. 0
      data/icons/org.sugol.books.svg
  6. 0
      data/ui-resources.xml
  7. 0
      data/ui/MainWindow.glade
  8. 0
      data/ui/MainWindow.ui
  9. 0
      data/ui/ProgressWindow.ui
  10. 0
      data/win32/books.ico
  11. 0
      data/win32/books.rc
  12. 0
      data/win32/make-icon.sh
  13. 6
      meson.build

1
.gitignore vendored

@ -1,6 +1,5 @@
build/
builddir/
data/
output/
*.code-workspace
.cache

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 390 B

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before

Width:  |  Height:  |  Size: 522 B

After

Width:  |  Height:  |  Size: 522 B

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

@ -19,8 +19,8 @@ gnome = import('gnome')
ui_res = gnome.compile_resources(
'ui-resources',
'assets/ui-resources.xml',
source_dir: 'assets',
'data/ui-resources.xml',
source_dir: 'data',
c_name: 'ui_res')
sources = [ ui_res ]
@ -29,7 +29,7 @@ subdir('src')
if build_machine.system() == 'windows' or build_machine.system() == 'cygwin'
windows = import('windows')
sources += [ windows.compile_resources('assets/win32/books.rc') ]
sources += [ windows.compile_resources('data/win32/books.rc') ]
endif
executable('books',

Loading…
Cancel
Save