mirror of
https://github.com/Relintai/codot.git
synced 2025-02-22 15:27:57 +01:00
13 lines
202 B
Plaintext
13 lines
202 B
Plaintext
|
#!/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"])
|