Initial commit

This commit is contained in:
Aodhan Collins
2026-02-22 12:51:32 +00:00
commit 0267543622
21 changed files with 2888 additions and 0 deletions

20
azeron-cli/CMakeLists.txt Normal file
View File

@@ -0,0 +1,20 @@
# azeron-cli - Command-line tool for Azeron configuration
set(AZERON_CLI_SOURCES
main.c
commands.c
utils.c
)
add_executable(azeron-cli ${AZERON_CLI_SOURCES})
# Link libraries
target_link_libraries(azeron-cli azeron ${LIBUSB_LIBRARIES} ${JSON_LIBRARIES})
# Include directories
target_include_directories(azeron-cli PRIVATE ${CMAKE_SOURCE_DIR}/libazeron)
# Install executable
install(TARGETS azeron-cli
RUNTIME DESTINATION bin
)