Browse Source

Only allow to build on linux, macos or windows (limited by juce)

Signed-off-by: falkTX <falktx@falktx.com>
tags/2020-12-27
falkTX 4 years ago
parent
commit
66affb9e35
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      meson.build

+ 3
- 1
meson.build View File

@@ -41,8 +41,10 @@ if host_machine.system() == 'darwin'
os_darwin = true
elif host_machine.system() == 'windows'
os_windows = true
else
elif host_machine.system() == 'linux'
os_linux = true
else
error('unsupported system')
endif

###############################################################################


Loading…
Cancel
Save