Brad Bishop | 81739f4 | 2019-03-29 09:48:26 -0400 | [diff] [blame^] | 1 | project( |
2 | 'obmc-ikvm', | ||||
3 | 'cpp', | ||||
4 | version: '1.0', | ||||
5 | license: 'GPLv2', | ||||
6 | default_options: [ | ||||
7 | 'cpp_std=c++17', | ||||
8 | 'werror=true', | ||||
9 | ], | ||||
10 | ) | ||||
11 | |||||
12 | executable( | ||||
13 | 'obmc-ikvm', | ||||
14 | [ | ||||
15 | 'ikvm_args.cpp', | ||||
16 | 'ikvm_input.cpp', | ||||
17 | 'ikvm_manager.cpp', | ||||
18 | 'ikvm_server.cpp', | ||||
19 | 'ikvm_video.cpp', | ||||
20 | 'obmc-ikvm.cpp', | ||||
21 | ], | ||||
22 | dependencies: [ | ||||
23 | dependency('libvncserver'), | ||||
24 | dependency('phosphor-logging'), | ||||
25 | dependency('phosphor-dbus-interfaces'), | ||||
26 | dependency('sdbusplus'), | ||||
27 | dependency('threads'), | ||||
28 | ], | ||||
29 | install: true | ||||
30 | ) |