You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
432 B

  1. project('PinePhone Toolkit', 'c')
  2. install_suid = ['rwsr-xr-x', 0, 0]
  3. executable('pptk-backlight', ['src/backlight.c'],
  4. install: true, install_mode: install_suid)
  5. executable('pptk-led', ['src/led.c'],
  6. install: true, install_mode: install_suid)
  7. executable('pptk-cpu-sleep', ['src/cpu-sleep.c'],
  8. install: true, install_mode: install_suid)
  9. executable('pptk-vibrate', ['src/vibrate.c'],
  10. install: true, install_mode: install_suid)