aboutsummaryrefslogtreecommitdiffstats
path: root/SConstruct
blob: 17f2140ae4bfc5da1c41699e40aa5e6f5302616c (plain) (blame)
1
2
3
4
5
6
7
8

sources = ['redshift.c', 'solar.c', 'colortemp.c']

env = Environment()
env.ParseConfig('pkg-config --cflags --libs xcb xcb-randr')
env.Program('redshift', sources,
            CFLAGS='-std=c99 -D_BSD_SOURCE',
            LINKFLAGS='-lm')