File: meson.build

package info (click to toggle)
nlohmann-json3 3.12.0.really.3.12.0.really.3.11.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,192 kB
  • sloc: cpp: 103,344; python: 773; makefile: 301; sql: 228; ansic: 45; sh: 15
file content (24 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
project('nlohmann_json',
    'cpp',
    version : '3.11.3',
    license : 'MIT',
)

nlohmann_json_dep = declare_dependency(
    include_directories: include_directories('single_include')
)

nlohmann_json_multiple_headers = declare_dependency(
    include_directories: include_directories('include')
)

if not meson.is_subproject()
install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann')
install_headers('single_include/nlohmann/json_fwd.hpp', subdir: 'nlohmann')

pkgc = import('pkgconfig')
pkgc.generate(name: 'nlohmann_json',
    version: meson.project_version(),
    description: 'JSON for Modern C++'
)
endif