diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-04-18 13:20:28 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-05-17 11:06:01 -0700 |
commit | 4649e9ad996e4b2dc4e3e70ed3df3f2c59b88608 (patch) | |
tree | 254242e9741988edcf50f1bf4c6cc82be834f09e | |
parent | 7043473385094233824d32d624cc44f3ae5fea8d (diff) |
meson: don't build shader cache on windows
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3acfb93e5a..c08614e385 100644 --- a/meson.build +++ b/meson.build @@ -722,7 +722,7 @@ if get_option('buildtype') == 'debug' pre_args += '-DDEBUG' endif -if get_option('shader-cache') +if get_option('shader-cache') and host_machine.system() != 'windows' pre_args += '-DENABLE_SHADER_CACHE' elif with_amd_vk error('Radv requires shader cache support') |