meson.build (f8ec554cb87503806ca341b69d3474c8cfdf6c28) | meson.build (518b0d800b5ab046b72fac423ace7549ab187329) |
---|---|
1if not have_ga 2 if get_option('guest_agent_msi').enabled() 3 error('Guest agent MSI requested, but the guest agent is not being built') 4 endif 5 have_qga_vss = false 6 subdir_done() 7endif 8 --- 58 unchanged lines hidden (view full) --- 67 'main.c', 68 'cutils.c', 69)) 70qga_ss.add(when: 'CONFIG_POSIX', if_true: files( 71 'channel-posix.c', 72 'commands-posix.c', 73 'commands-posix-ssh.c', 74)) | 1if not have_ga 2 if get_option('guest_agent_msi').enabled() 3 error('Guest agent MSI requested, but the guest agent is not being built') 4 endif 5 have_qga_vss = false 6 subdir_done() 7endif 8 --- 58 unchanged lines hidden (view full) --- 67 'main.c', 68 'cutils.c', 69)) 70qga_ss.add(when: 'CONFIG_POSIX', if_true: files( 71 'channel-posix.c', 72 'commands-posix.c', 73 'commands-posix-ssh.c', 74)) |
75qga_ss.add(when: 'CONFIG_LINUX', if_true: files( 76 'commands-linux.c', 77)) |
|
75qga_ss.add(when: 'CONFIG_WIN32', if_true: files( 76 'channel-win32.c', 77 'commands-win32.c', 78 'service-win32.c', 79 'vss-win32.c' 80)) 81 82qga_ss = qga_ss.apply(config_host, strict: false) --- 90 unchanged lines hidden --- | 78qga_ss.add(when: 'CONFIG_WIN32', if_true: files( 79 'channel-win32.c', 80 'commands-win32.c', 81 'service-win32.c', 82 'vss-win32.c' 83)) 84 85qga_ss = qga_ss.apply(config_host, strict: false) --- 90 unchanged lines hidden --- |