blob: 5580d4ab857af337ec8fbd8cc8a8b8a7a9de5217 [file] [log] [blame]
Chicago Duan184f6022020-04-17 11:30:49 +08001deps = [
Patrick Williams6f4479c2021-04-16 21:39:44 -05002 libpldm_dep,
Chicago Duan184f6022020-04-17 11:30:49 +08003 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -05004 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +05305 sdeventplus,
6 sdbusplus,
7 phosphor_dbus_interfaces,
Chicago Duan184f6022020-04-17 11:30:49 +08008 ]
George Liu4c1a3fd2020-03-10 08:25:21 +08009
Chicago Duan184f6022020-04-17 11:30:49 +080010source = ['main.cpp','softoff.cpp']
George Liu4c1a3fd2020-03-10 08:25:21 +080011
12executable('pldm-softpoweroff',source,
13 implicit_include_directories: false,
14 dependencies: deps,
15 install: true,
16 install_dir: get_option('bindir'))
Chicago Duan184f6022020-04-17 11:30:49 +080017
Chicago Duan184f6022020-04-17 11:30:49 +080018servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
19
20configure_file(input: 'services/pldmSoftPowerOff.service',
21 output: 'pldmSoftPowerOff.service',
22 copy: true,
23 install_dir: servicedir)
24