Source code

Revision control

Copy as Markdown

Other Tools

# Any copyright is dedicated to the Public Domain.
@template
def DisableCompilerWarnings():
COMPILE_FLAGS["WARNINGS_CFLAGS"] = []
@template
def Library(name):
"""Template for libraries."""
LIBRARY_NAME = name
Library("dummy")
UNIFIED_SOURCES += ["test1.c"]
DisableCompilerWarnings()