Readme.md - added Section for customization and notes
[biaweb2.git] / SConstruct
1 env = Environment ()
2 env.Append (CXXFLAGS = '-std=c++17')
3 conf = Configure (env)
4 if not conf.CheckCHeader ("mkdio.h"):
5 print ("markdown header mkdio not found. Install libmarkdown2-dev or equivalent")
6 Exit (1)
7 if not conf.CheckCXXHeader ("fmt/format.h"):
8 print ("libfmt header file fmt/format.h not found. Install the libfmt-dev or equivalent")
9 Exit (1)
10 env = conf.Finish ()
11 biaweb = env.Program (target='biaweb', source=['biaweb.cpp'],
12 LIBS=['fmt', 'markdown'], LIBPATH=['/usr/lib', '/usr/local/lib'])
13 Default (biaweb)
14