├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── docs └── example.maxref ├── help └── example.maxhelp ├── init └── object-mappings.txt ├── package-info.json.in └── source └── projects └── example ├── CMakeLists.txt └── example.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/README.md -------------------------------------------------------------------------------- /docs/example.maxref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/docs/example.maxref -------------------------------------------------------------------------------- /help/example.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/help/example.maxhelp -------------------------------------------------------------------------------- /init/object-mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package-info.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/package-info.json.in -------------------------------------------------------------------------------- /source/projects/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/source/projects/example/CMakeLists.txt -------------------------------------------------------------------------------- /source/projects/example/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cycling74/max-package-template/HEAD/source/projects/example/example.c --------------------------------------------------------------------------------