File: meson.build

package info (click to toggle)
btllib 1.4.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,340 kB
  • sloc: cpp: 61,642; sh: 301; python: 222; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
python3 = find_program('python3', required : false)
if python3.found()
    python3_config = find_program('python3-config', required : false)
    if python3_config.found()
        subdir('python')
    else
        message('python3-config not found, skipping Python wrappers.')
    endif
else
    message('python3 not found, skipping wrappers.')
endif