Move headers to include/ dir

This commit is contained in:
Nils O. Selåsdal
2012-11-14 23:49:28 +01:00
parent 0afea336ef
commit 1d47f9d078
25 changed files with 3 additions and 2335 deletions
+3 -1
View File
@@ -57,6 +57,7 @@ Export('env', 'build_type', 'prefix', 'version_info', 'test_xml')
env.Append(CFLAGS = ['-Wall', '-Wextra', '-pipe', '-ggdb', '-pthread'])
env.Append(LINKFLAGS = ['-O2', '-pthread'])
env.Append(CPPDEFINES = ['_FILE_OFFSET_BITS=64'])
env.Append(CPPPATH = ['#include'])
if build_type == 'release':
env.Append(CFLAGS = ['-O2'])
@@ -72,7 +73,8 @@ env.SConsignFile()
subdirs = [
'src',
'test'
'include',
'test',
]
for subdir in subdirs: