set prefix as proper install path

dev
Claudius Holeksa 2022-03-05 17:07:27 +01:00
parent 704351b459
commit c2076e9e81
1 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ env.Alias('format', env.format_actions)
env.Alias('all', ['format', 'library_shared', 'library_static'])
env.Install('/usr/local/lib/', [env.library_shared, env.library_static])
env.Install('/usr/local/include/forstio/window/', [env.headers])
env.Install('/usr/local/include/forstio/window/gl/', [env.gl_headers])
env.Alias('install', '/usr/local/')
env.Install('$prefix/lib/', [env.library_shared, env.library_static])
env.Install('$prefix/include/forstio/window/', [env.headers])
env.Install('$prefix/include/forstio/window/gl/', [env.gl_headers])
env.Alias('install', '$prefix')