initial commit

This commit is contained in:
2021-09-20 19:35:42 +08:00
commit d0fd75d673
5 changed files with 422 additions and 0 deletions

13
CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
project(keycode)
add_library(keycode STATIC
src/keycode.c
)
add_executable(keycode_test
src/test.c
)
target_link_libraries(keycode_test
keycode
)