Premake Extension to support the Tiny C Compiler
- Support actions: gmake
Simply specify:
toolset "tcc"
as your toolset.
- flags
- BoundsCheck
- Verbose
The contents of your premake5.lua file would be:
solution "MySolution"
configurations { "release", "debug" }
project "MyProject"
kind "ConsoleApp"
language "C"
toolset "tcc"
files { "src/main.c" }