├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── combine_compile_commands.py ├── envs.sh ├── example └── Makefile └── setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | result/ 3 | 4 | private-envs.sh 5 | compile_commands.json 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/README.md -------------------------------------------------------------------------------- /combine_compile_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/combine_compile_commands.py -------------------------------------------------------------------------------- /envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/envs.sh -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/example/Makefile -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolyArch/gem-forge-framework/HEAD/setup.sh --------------------------------------------------------------------------------