├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── manylinux-build.sh └── manylinux-internal.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/README.md -------------------------------------------------------------------------------- /manylinux-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/manylinux-build.sh -------------------------------------------------------------------------------- /manylinux-internal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastXML/CastXMLSuperbuild/HEAD/manylinux-internal.sh --------------------------------------------------------------------------------