evpobr
evpobr
I need it to find opus package with CMake and retrieve its version. Find module uses `pkg-config` when possible. But when it is missing (Windows), the common way is to...
> There's someone working on CMake support. That being said, the idea is that getting the version from the header should _not_ be needed. I'm not sure we will see...
> If someone makes a tar.gz of the current master without any of the version info, then there's nothing we can do about it. So, if we dowload `tar.gz` from...
But idea about download tarball is good... It has `package_version` and works! Now i know how to fix Vcpkg opus port 😄
About version header - if you add it, many CMake developers will thank you. You can make it standalone, do not include in any other public header. No harm to...
> The version is always extracted from the git tags (and commits), which is the only way it can be accurate. I understand. That's why Vcpkg build failed: no `.git`...
I need this ```cmake find_package(Opus 1.3) ``` in my CMake project to work on any platfrom. API version is important when configuring project, right? On Unix-like systems i can run...
> Maybe there's another way -- ideally one that would work for existing versions. I think this is common way. According to find modules bundled with CMake. > Now, the...
> I don't like the duplication of the .def file. If our goal is to replace the visual studio project files with cmake, and you want to change the ABI,...
Hi @krisfed. Yep, it is not implemented yet.