2025-05-07 17:44:14 -05:00
|
|
|
project('tutorial', 'cpp')
|
2025-05-07 17:30:29 -05:00
|
|
|
|
2025-05-07 17:44:14 -05:00
|
|
|
CC = meson.get_compiler('cpp')
|
2025-05-07 17:30:29 -05:00
|
|
|
|
|
|
|
|
zlib = dependency('zlib', version : '1.2.11', static: true, required: true)
|
|
|
|
|
|
2025-05-07 17:44:14 -05:00
|
|
|
target_name = 'compressor'
|
|
|
|
|
files = files('src/main.cpp')
|
2025-05-07 17:30:29 -05:00
|
|
|
|
2025-05-07 17:44:14 -05:00
|
|
|
|
|
|
|
|
executable(target_name, files, dependencies: [zlib])
|