You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try install lyaml on Windows I get luke: fatal: cannot find LDocs generator.
But ldoc installed and i can call it from command line.
Also cmake file for libyaml produce libyaml.lib and for MS compiler when you define yaml.lib it does not lookup libyaml.lib but only yaml.lib. So I also have to rename it.
Also to build against static version of libyaml it required define YAML_DECLARE_STATIC
when you build C module.
So I write my rockspec file to support build on MSVC on Windows.
I test it with MSVC 2010/2015
You can checkout file in my repo
The text was updated successfully, but these errors were encountered:
When I try install lyaml on Windows I get
luke: fatal: cannot find LDocs generator
.But ldoc installed and i can call it from command line.
Also cmake file for libyaml produce
libyaml.lib
and for MS compiler when you defineyaml.lib
it does not lookuplibyaml.lib
but onlyyaml.lib
. So I also have to rename it.Also to build against static version of libyaml it required define
YAML_DECLARE_STATIC
when you build C module.
So I write my rockspec file to support build on MSVC on Windows.
I test it with MSVC 2010/2015
You can checkout file in my repo
The text was updated successfully, but these errors were encountered: