123456789101112131415161718 |
- project('YTMPV', 'cpp',
- version : '0.1',
- default_options : [
- 'warning_level=3',
- 'cpp_std=c++17',
- 'c_std=c11',
- 'default_library=static'
- ]
- )
- glibmm_dep = dependency('glibmm-2.68')
- curlpp_dep = dependency('libcurl')
- json_dep = dependency('nlohmann_json')
- sqlite3_dep = dependency('sqlite3')
- gtkmm_dep = dependency('gtkmm-4.0')
- subdir('lib')
- subdir('src/YTMPV')
|