get_include

get_include()

Return the directory that contains the packages *.h header files.

Extension modules that need to compile against the packages exported header files should use this function to locate the appropriate include directory.

Notes

When using distutils, for example in setup.py: python ... Extension('extension_name', ..., include_dirs=[landmark.get_include()]) ... Or with meson-python, for example in meson.build: meson ... run_command(py, ['-c', 'print(landmark.get_include())', check : true).stdout().strip() ...