libgraphqlparser icon indicating copy to clipboard operation
libgraphqlparser copied to clipboard

Build fails with latest ctypesgen

Open bobh66 opened this issue 6 years ago • 1 comments

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

bobh66 avatar Sep 21 '19 13:09 bobh66

any status on this change? this is breaking python builds and keeping it locked on the older versions.

briggleman avatar Sep 24 '19 22:09 briggleman