├── .gitignore ├── LICENSE ├── README.org ├── pybind11_cmake ├── .gitignore ├── FindCatch.cmake ├── FindEigen3.cmake ├── FindPythonLibsNew.cmake ├── __init__.py ├── check-style.sh ├── libsize.py ├── mkdoc.py ├── pybind11Config.cmake └── pybind11Tools.cmake ├── pybind11_new_project └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/README.org -------------------------------------------------------------------------------- /pybind11_cmake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/.gitignore -------------------------------------------------------------------------------- /pybind11_cmake/FindCatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/FindCatch.cmake -------------------------------------------------------------------------------- /pybind11_cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /pybind11_cmake/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /pybind11_cmake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/__init__.py -------------------------------------------------------------------------------- /pybind11_cmake/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/check-style.sh -------------------------------------------------------------------------------- /pybind11_cmake/libsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/libsize.py -------------------------------------------------------------------------------- /pybind11_cmake/mkdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/mkdoc.py -------------------------------------------------------------------------------- /pybind11_cmake/pybind11Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/pybind11Config.cmake -------------------------------------------------------------------------------- /pybind11_cmake/pybind11Tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_cmake/pybind11Tools.cmake -------------------------------------------------------------------------------- /pybind11_new_project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/pybind11_new_project -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safijari/pybind11-cmake/HEAD/setup.py --------------------------------------------------------------------------------