Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- meson.build:
- project('my_project', 'c')
- c_compiler = meson.get_compiler('c')
- bzip2_dep = c_compiler.find_library(
- 'bz2',
- dirs: '/usr/lib',
- )
- executable('main', 'main.c', dependencies: bzip2_dep)
- main.c:
- int main(){return 0;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement