Building Notes

Ships with a configure script placeholder that only does echo please run autogen.sh first * this seems reasonable but it’s wrong. There should not be a configure script at all, only instructions in an INSTALL file. * Run the “Autotools: Bootstrap” palette command; it will bootstrap, configure and import the project successfully.

Does not support out-of-tree build. * in src/Makefile.am, two CPPFLAGS should be changed from ctypes_la_CPPFLAGS = -I../include to ctypes_la_CPPFLAGS = -I${top_srcdir}/include to allow out-of-tree builds * create a build configuration with top_builddir = "" to use in-tree build.

There is only one installable target, the ctypes.so shared library. The integration does not show static or shared libraries as binary goals, because there are no relevant actions associated with them.

## Testing Notes

There are no tests. The Test Explorer is not activated.