The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
277 B
11 lines
277 B
7 years ago
|
project('non acsii to ascii encoding', 'c')
|
||
|
# Writing a non ASCII character with a ASCII encoding should fail
|
||
|
conf9 = configuration_data()
|
||
|
conf9.set('var', 'д')
|
||
|
configure_file(
|
||
|
input : 'config9.h.in',
|
||
|
output : '@BASENAME@',
|
||
|
encoding : 'ascii',
|
||
|
configuration : conf9
|
||
|
)
|