File: meson.build

package info (click to toggle)
gnome-subtitles 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 103,144 kB
  • sloc: xml: 406,395; cs: 364,495; ansic: 3,104; perl: 1,477; sh: 769; python: 545; javascript: 500; makefile: 49
file content (54 lines) | stat: -rw-r--r-- 1,826 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
resource_flags =  []

foreach rid: [
        ['css/css_basics.css', 'css_basics.css'],
        ['css/reset.css', 'reset.css'],
        ['images/gnome-foot.png', 'gnome-foot.png'],
        ['images/MonoIcon.png', 'MonoIcon.png'],
        ['images/gnome-calendar.png', 'gnome-calendar.png'],
        ['images/gnome-gmush.png', 'gnome-gmush.png'],
        ['images/gnu-keys.png', 'gnu-keys.png'],
        ['images/gnome-applets.png', 'gnome-applets.png'],
        ['images/gnome-gsame.png', 'gnome-gsame.png'],
        ['images/alphatest.png', 'alphatest.png'],
        ['images/gnome-gimp.png', 'gnome-gimp.png'],
        ['images/apple-red.png', 'apple-red.png'],
        ['images/background.jpg', 'background.jpg'],
        ['images/gtk-logo-rgb.gif', 'gtk-logo-rgb.gif'],
        ['images/floppybuddy.gif', 'floppybuddy.gif'],
        ['theming.ui', 'theming.ui'],]
    resource_flags += ['-resource:' + join_paths(meson.current_source_dir(), rid.get(0)) + ',' + rid.get(1)]
endforeach

executable('GtkDemo',
    'DemoApplicationWindow.cs',
    'DemoAttribute.cs',
    'DemoButtonBox.cs',
    'DemoClipboard.cs',
    'DemoColorSelection.cs',
    'DemoDialog.cs',
    'DemoDrawingArea.cs',
    'DemoEditableCells.cs',
    'DemoEntryCompletion.cs',
    'DemoExpander.cs',
    'DemoHyperText.cs',
    'DemoIconView.cs',
    'DemoImages.cs',
    'DemoListStore.cs',
    'DemoMain.cs',
    'DemoMenus.cs',
    'DemoPanes.cs',
    'DemoPixbuf.cs',
    'DemoRotatedText.cs',
    'DemoSizeGroup.cs',
    'DemoSpinner.cs',
    'DemoStockBrowser.cs',
    'DemoTextView.cs',
    'DemoThemingStyleClasses.cs',
    'DemoTreeStore.cs',
    'DemoUIManager.cs',
    'DemoPrinting.cs',
    link_with: [glib_sharp, gio_sharp, cairo_sharp, pango_sharp,
        atk_sharp, gdk_sharp, gtk_sharp],
    cs_args: resource_flags + ['-nowarn:0612']
)