From b5a408bae518ededbb871d113dab89f3e15bfb45 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Wed, 23 Dec 2009 15:21:56 +0000 Subject: llvmpipe: Install unit tests on build/xxx/bin --- scons/gallium.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scons') diff --git a/scons/gallium.py b/scons/gallium.py index 5f149f9528..b7a14af4b1 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -156,6 +156,12 @@ def symlink(target, source, env): os.remove(target) os.symlink(os.path.basename(source), target) +def install_program(env, source): + source = str(source[0]) + target_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build'], 'bin') + target_name = str(source) + env.InstallAs(os.path.join(target_dir, target_name), source) + def install_shared_library(env, source, version = ()): source = str(source[0]) version = tuple(map(str, version)) @@ -169,6 +175,7 @@ def install_shared_library(env, source, version = ()): last = env.Command(os.path.join(target_dir, target_name), last, action) def createInstallMethods(env): + env.AddMethod(install_program, 'InstallProgram') env.AddMethod(install_shared_library, 'InstallSharedLibrary') -- cgit v1.2.3