├── .gitignore ├── LICENSE ├── cudaup.packets ├── cudaup.repos ├── cudaup.sh └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore files created by build process 2 | bin/ 3 | src/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/CudaText_up/HEAD/LICENSE -------------------------------------------------------------------------------- /cudaup.packets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/CudaText_up/HEAD/cudaup.packets -------------------------------------------------------------------------------- /cudaup.repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/CudaText_up/HEAD/cudaup.repos -------------------------------------------------------------------------------- /cudaup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/CudaText_up/HEAD/cudaup.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexey-T/CudaText_up/HEAD/readme.md --------------------------------------------------------------------------------