Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 1 | project('phosphor-time-manager', |
| 2 | 'cpp', |
| 3 | version: '0.1', |
Patrick Williams | 915109d | 2021-10-06 15:40:26 -0500 | [diff] [blame] | 4 | meson_version: '>=0.57.0', |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 5 | default_options: [ 'warning_level=3', |
| 6 | 'werror=true', |
Patrick Williams | 915109d | 2021-10-06 15:40:26 -0500 | [diff] [blame] | 7 | 'cpp_std=c++20', |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 8 | 'buildtype=debugoptimized' ]) |
| 9 | |
| 10 | ######################################################################## |
| 11 | |
| 12 | # Project Links |
| 13 | |
| 14 | project_pretty_name = 'phosphor-time-manager' |
| 15 | project_url = 'https://github.com/openbmc/' + project_pretty_name |
| 16 | project_issues_url = project_url + '/issues/new' |
| 17 | |
| 18 | summary('Issue', project_issues_url, section : 'Report Issues') |
| 19 | |
| 20 | ##################################################################### |
| 21 | |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 22 | # Get Compiler and default build type |
| 23 | |
| 24 | compiler = meson.get_compiler('cpp') |
| 25 | |
| 26 | ######################################################################### |
| 27 | |
| 28 | # Find the dependencies |
| 29 | |
George Liu | 0fb8ed4 | 2022-07-01 16:21:59 +0800 | [diff] [blame] | 30 | sdbusplus_dep = dependency ('sdbusplus') |
| 31 | phosphor_logging_dep = dependency ('phosphor-logging') |
| 32 | phosphor_dbus_interfaces_dep = dependency ('phosphor-dbus-interfaces') |
| 33 | deps = [ |
| 34 | sdbusplus_dep, |
| 35 | phosphor_logging_dep, |
| 36 | phosphor_dbus_interfaces_dep, |
| 37 | ] |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 38 | |
| 39 | ########################################################################### |
| 40 | |
| 41 | # Get the config data and enable options |
| 42 | |
| 43 | conf_data = configuration_data() |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 44 | conf_data.set('DEFAULT_TIME_MODE', get_option('default_time_mode')) |
| 45 | |
| 46 | configure_file(output: 'config.h', configuration: conf_data) |
| 47 | |
| 48 | |
| 49 | ############################################################################ |
| 50 | |
| 51 | # Gather sources for the target binaries |
| 52 | |
| 53 | phosphor_time_manager_sources = [ |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 54 | 'bmc_epoch.cpp', |
| 55 | 'manager.cpp', |
| 56 | 'utils.cpp', |
| 57 | 'settings.cpp', |
| 58 | ] |
| 59 | |
| 60 | libtimemanager = static_library('libtimemanager', |
| 61 | phosphor_time_manager_sources, |
| 62 | dependencies : deps) |
| 63 | ############################################################################ |
| 64 | |
Ratan Gupta | f901e9c | 2021-02-03 09:04:59 +0530 | [diff] [blame] | 65 | # Install the files into the build directory |
| 66 | |
| 67 | systemd = dependency ('systemd') |
Pavithra Barithaya | 667563c | 2022-08-01 07:25:35 -0500 | [diff] [blame] | 68 | systemd_system_unit_dir = systemd.get_variable( |
| 69 | pkgconfig : 'systemdsystemunitdir', |
| 70 | pkgconfig_define: ['prefix', get_option('prefix')]) |
Ratan Gupta | f901e9c | 2021-02-03 09:04:59 +0530 | [diff] [blame] | 71 | configure_file(input : 'xyz.openbmc_project.Time.Manager.service', |
| 72 | output : 'xyz.openbmc_project.Time.Manager.service', |
| 73 | copy : true, |
| 74 | install_dir : systemd_system_unit_dir) |
| 75 | |
| 76 | ############################################################################# |
| 77 | |
Ratan Gupta | 8af2a89 | 2021-02-02 05:48:18 -0600 | [diff] [blame] | 78 | # Build binaries |
| 79 | |
| 80 | executable('phosphor-time-manager', |
| 81 | 'main.cpp', |
| 82 | link_with : libtimemanager, |
| 83 | dependencies : deps, |
| 84 | install : true) |
| 85 | |
| 86 | if get_option('tests').enabled() |
| 87 | subdir('test') |
| 88 | endif |