tycho: use the correct meta functions

master
an 2019-06-30 19:32:17 -04:00
parent 31c6701dd5
commit fcf467210e
1 changed files with 7 additions and 7 deletions

View File

@ -14,12 +14,12 @@ macro_rules! meta_str {
}
}
meta_str!(
tychoAuthors = meta::ffi::AUTHORS_C;
tychoHomepage = meta::ffi::HOMEPAGE_C;
tychoLicenseText = meta::ffi::LICENSE_TEXT_C;
tychoRepository = meta::ffi::REPOSITORY_C;
tychoVersion = meta::ffi::VERSION_C;
);
meta_str! {
tychoAuthors = meta::ffi::authors();
tychoHomepage = meta::ffi::homepage();
tychoLicenseText = meta::ffi::license_text();
tychoRepository = meta::ffi::repository();
tychoVersion = meta::ffi::version();
}
// EOF