mirror of
https://github.com/Relintai/codot.git
synced 2025-02-18 03:24:20 +01:00
13 lines
202 B
Python
13 lines
202 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
import os
|
|
from platform_methods import run_in_subprocess
|
|
|
|
common_t = [
|
|
"main.c",
|
|
]
|
|
|
|
prog = env.add_program("#bin/prog", common_t, PROGSUFFIX=env["PROGSUFFIX"])
|