CMakeLists.txt 579 B

12345678910111213141516
  1. # SPDX-License-Identifier: Apache-2.0
  2. add_subdirectory_ifdef(CONFIG_LIS2DW12 lis2dw12)
  3. add_subdirectory_ifdef(CONFIG_LPS22HH lps22hh)
  4. add_subdirectory_ifdef(CONFIG_LSM6DSO lsm6dso)
  5. if(CONFIG_USERSPACE OR CONFIG_SENSOR_SHELL OR CONFIG_SENSOR_SHELL_BATTERY)
  6. # The above if() is needed or else CMake would complain about
  7. # empty library.
  8. zephyr_library()
  9. zephyr_library_sources_ifdef(CONFIG_USERSPACE sensor_handlers.c)
  10. zephyr_library_sources_ifdef(CONFIG_SENSOR_SHELL sensor_shell.c)
  11. zephyr_library_sources_ifdef(CONFIG_SENSOR_SHELL_BATTERY shell_battery.c)
  12. endif()