blob: 13b336ca471232fdfd865537026ec226a0fd2f90 (
plain)
1
2
3
4
5
6
7
|
project('rewritetest', 'cpp', version: '0.0.1')
# Find ZLIB
dep1 = dependency('zlib', required: false)
# Make a test exe
tgt1 = executable('helloWorld', 'main.cpp', build_by_default: true)
|