initial commit: WIP debugging PAM module

This commit is contained in:
2026-03-16 11:59:16 +11:00
commit 1d3eaff622
20 changed files with 699 additions and 0 deletions

7
tests/app/CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.15)
project(pam_test_app LANGUAGES CXX)
add_executable(pam_test_app pam_test_app.cpp)
target_link_libraries(pam_test_app PRIVATE pam)
install(TARGETS pam_test_app RUNTIME DESTINATION bin)