Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. meson.build:
  2. project('my_project', 'c')
  3. c_compiler = meson.get_compiler('c')
  4. bzip2_dep = c_compiler.find_library(
  5. 'bz2',
  6. dirs: '/usr/lib',
  7. )
  8. executable('main', 'main.c', dependencies: bzip2_dep)
  9.  
  10. main.c:
  11. int main(){return 0;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement