diff options
author | Jose Fonseca <[email protected]> | 2016-04-03 11:09:35 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2016-04-03 11:17:20 +0100 |
commit | 522ebe701dd1f05c5058d053bd638df75a7adae0 (patch) | |
tree | 77fefb7cdcd54c6e59c4bee42d57a45dc0695cda /src/gallium/drivers | |
parent | b284f1f7f9afa560d6f4c0863681a7e36913955c (diff) |
llvmpipe: Build lp_test_arit on MSVC too.
It builds fine now. Probably due to C99 support.
Trivial.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/llvmpipe/SConscript | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/SConscript b/src/gallium/drivers/llvmpipe/SConscript index 11cc3bcc858..8188156afc2 100644 --- a/src/gallium/drivers/llvmpipe/SConscript +++ b/src/gallium/drivers/llvmpipe/SConscript @@ -25,15 +25,13 @@ if not env['embedded']: env.Prepend(LIBS = [llvmpipe, gallium, mesautil]) tests = [ + 'arit', 'format', 'blend', 'conv', 'printf', ] - if not env['msvc']: - tests.append('arit') - for test in tests: testname = 'lp_test_' + test target = env.Program( |