Files
libucore/include/ucore/SConscript
T
2012-12-14 11:48:27 +01:00

14 lines
255 B
Python

import os
Import('env', 'build_type', 'prefix', 'version_info')
ucore_env = env.Clone()
headers = ucore_env.Glob('*.h')
#install targets
ucore_env.Alias('install',
ucore_env.InstallPerm(os.path.join(prefix, 'include', 'ucore'), headers, 0644))