meson.build: use set_quoted()
This commit is contained in:
parent
350cf89e51
commit
58a4ba1d05
|
@ -2,8 +2,8 @@ project('pdf-simple-sign', 'cpp', default_options : ['cpp_std=c++11'],
|
|||
version : '1.1.1')
|
||||
|
||||
conf = configuration_data()
|
||||
conf.set('PROJECT_NAME', '"' + meson.project_name() + '"')
|
||||
conf.set('PROJECT_VERSION', '"' + meson.project_version() + '"')
|
||||
conf.set_quoted('PROJECT_NAME', meson.project_name())
|
||||
conf.set_quoted('PROJECT_VERSION', meson.project_version())
|
||||
configure_file(output : 'config.h', configuration : conf)
|
||||
|
||||
cryptodep = dependency('libcrypto')
|
||||
|
|
Loading…
Reference in New Issue