We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since ctypesgen 0.1.1 (now 1.0.0) it has installed as "ctypesgen" instead of "ctypesgen.py" so CMakeLists.txt can't find the executable.
The fix is trivial:
FIND_PROGRAM(CTYPESGEN_FOUND ctypesgen.py) IF (NOT CTYPESGEN_FOUND) FIND_PROGRAM(CTYPESGEN_FOUND ctypesgen) ENDIF()
If that's acceptable I'll push a PR.
Thanks
The text was updated successfully, but these errors were encountered:
any status on this change? this is breaking python builds and keeping it locked on the older versions.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Since ctypesgen 0.1.1 (now 1.0.0) it has installed as "ctypesgen" instead of "ctypesgen.py" so CMakeLists.txt can't find the executable.
The fix is trivial:
If that's acceptable I'll push a PR.
Thanks
The text was updated successfully, but these errors were encountered: