mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 08:23:50 -04:00
This preps us for proper system installs to distributions, finding depending libraries, and allowing us to build the foundation for the GUI and support tooling next. The plan is to run g13d as a system daemon managed by systemd. We'll use the system-wide input group to control access to the daemon. - Add a CMakeLists for etc so we can install the udev rules. - Move the src dir to g13d to disambiguate a bit. - Update the toplevel Makefile so we can still build the old way (for now).
6 lines
128 B
CMake
6 lines
128 B
CMake
cmake_minimum_required(VERSION 3.16.3)
|
|
project(g13)
|
|
|
|
install(FILES 91-g13.rules
|
|
DESTINATION /etc/udev.d/rules.d/91-g13.rules)
|