Add a plugin group host application

This commit is contained in:
Robbert van der Helm
2020-05-17 15:07:20 +02:00
parent 95e716d229
commit 994f3c9e38
7 changed files with 171 additions and 25 deletions
+4 -2
View File
@@ -5,8 +5,10 @@ config_header = configure_file(
output : 'config.h',
configuration : configuration_data(
{
'host_binary_32bit': host_name_32bit + '.exe',
'host_binary_64bit': host_name_64bit + '.exe',
'individual_host_binary_32bit': individual_host_name_32bit + '.exe',
'individual_host_binary_64bit': individual_host_name_64bit + '.exe',
'group_host_binary_32bit': group_host_name_32bit + '.exe',
'group_host_binary_64bit': group_host_name_64bit + '.exe',
}
)
)