diff --git a/src/gallium/tests/meson.build b/src/gallium/tests/meson.build index 080bd8485b0..15b9f549647 100644 --- a/src/gallium/tests/meson.build +++ b/src/gallium/tests/meson.build @@ -18,6 +18,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -subdir('trivial') -subdir('unit') +if not with_platform_windows + # pipe-loader doesn't build on windows. + subdir('trivial') +endif +if with_gallium_softpipe + subdir('unit') +endif subdir('graw')