File: meson.build

package info (click to toggle)
glib-networking 2.80.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,796 kB
  • sloc: ansic: 21,084; sh: 129; python: 51; makefile: 19
file content (17 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
subdir('base')

if gnutls_dep.found()
  subdir('gnutls')
endif

if backends.contains('openssl')
  if ['darwin', 'ios'].contains(host_system)
    security_dep = dependency('appleframeworks', modules : ['Security'])
  elif ['windows'].contains(host_system)
    crypt32_dep = cc.find_library('crypt32')
  endif

  subdir('openssl')
endif

subdir('tests')