aboutsummaryrefslogtreecommitdiff
path: root/src/meson.build
blob: 83ef998a135bbe6d60a4d4ddd4316fb0ee7761b7 (plain)
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
# poi
poi_moc = qt5.preprocess(
    moc_headers: [],
    ui_files: ['mainwindow/mainwindow.ui', 'mainwindow/widgets/searchform.ui'],
    qresources: '../data/resources.qrc',
    dependencies: dep_qt5
)

poi = executable('poi', install: true,
    dependencies: [dep_qt5, dep_boost, dep_breakpad, dep_SingleApplication,
        dep_about, dep_addressbar, dep_bookmarks, dep_configuration, dep_downloads, dep_urlfilter, dep_web],
    cpp_args : '-DQAPPLICATION_CLASS=QApplication',
    include_directories: [include, genheader_inc, lib_inc, thirdparty_inc],
    sources: ['main.cpp', poi_moc,
    'browser.cpp', 'browser.h', 
    'session.cpp', 'session.h', 
    'util.cpp', 'util.h',
    
    'mainwindow/mainwindow.cpp', 'mainwindow/mainwindow.h', 
    'mainwindow/widgets/dockwidget.cpp', 'mainwindow/widgets/dockwidget.h', 
    'mainwindow/widgets/navigationbar.cpp', 'mainwindow/widgets/navigationbar.h', 
    'mainwindow/widgets/searchform.cpp', 'mainwindow/widgets/searchform.h', 

    'subwindow/subwindow.cpp', 'subwindow/subwindow.h', 
    'subwindow/tabwidget.cpp', 'subwindow/tabwidget.h', 
    
    'webengine/filter.cpp', 'webengine/filter.h', 
    'webengine/urlinterceptor.cpp', 'webengine/urlinterceptor.h', 
    'webengine/webpage.cpp', 'webengine/webpage.h', 
    'webengine/webview.cpp', 'webengine/webview.h', 
    
    'wallet/wallet.cpp', 'wallet/wallet.h']
)