ste/Sconstruct.py
gunboy001 eb72d24b5b merged fbuffer.c into fbuffer.h
simpler code, less files, also added option to show/not show tab
markers
2019-12-08 14:41:11 +01:00

9 lines
224 B
Python

env = Environment()
env.Append(CCFLAGS=['-O3', '-Wall', '-Wextra', '-pedantic', '-Werror', '-Warray-bounds'])
env.Append(LIBPATH = ['lib/'])
env.Append(LIBS = ['ncursesw'])
env.Program(target='ste', source=['src/ste.c'])