1################################################################################
2# Meson file
3################################################################################
4
5################################################################################
6# Define platform specific variables
7
8win_res = []
9
10################################################################################
11# Then add the correct folder
12
13if platform_linux or platform_bsd
14  subdir('linux')
15elif platform_windows
16  subdir('windows')
17elif platform_osx
18  subdir('os-x')
19else
20  error('Unsupported OS.')
21endif