Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 501 Bytes

File metadata and controls

38 lines (27 loc) · 501 Bytes

Keystrokes

跨平台的键盘检测工具。

目前支持的平台有:

  • Windows
  • Linux(目前无法实现)

功能

在后台检测键盘按键,将检测到的键对应的虚拟键码存储到 lastInput.txt 文件。

构建

环境要求

  • CMake 3.22
  • g++ 8.3.0

CMake

项目已写好 CMakeLists.txt ,使用 CMake 构建即可。

Linux:

mkdir build
cd build
cmake ..
cmake --build .

Windows:

md build
cd build
cmake ..
cmake --build .