File: meson.build

package info (click to toggle)
btllib 1.7.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,336 kB
  • sloc: cpp: 79,742; python: 941; sh: 302; makefile: 5
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