diff --git a/tycho/source/meta.rs b/tycho/source/meta.rs index 3dfa9f8..ce31ef1 100644 --- a/tycho/source/meta.rs +++ b/tycho/source/meta.rs @@ -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