├── .appveyor.yml ├── .github ├── dependabot.yml └── workflows │ ├── conda.yml │ ├── format.yml │ ├── pip.yml │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── LICENSE ├── MANIFEST.in ├── README.md ├── conda.recipe └── meta.yaml ├── docs ├── Makefile ├── cmake_example.rst ├── conf.py ├── index.rst └── make.bat ├── pyproject.toml ├── setup.py ├── src └── main.cpp └── tests └── test_basic.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.github/workflows/conda.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.github/workflows/pip.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/README.md -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cmake_example.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: cmake_example 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/setup.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybind/cmake_example/HEAD/tests/test_basic.py --------------------------------------------------------------------------------