Files
libucore/include/SConscript
T
Nils O. Selåsdal 22e4bbd2f9 Bump to python 3
2025-06-27 23:05:46 +02:00

14 lines
262 B
Python

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