mirror of
https://github.com/Manoj-HV30/keystats.git
synced 2026-05-16 19:35:23 +00:00
first commit - mai san
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
project(keystroke-counter)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
include(FetchContent)
|
||||
FetchContent_Declare(ftxui
|
||||
GIT_REPOSITORY https://github.com/ArthurSonzogni/FTXUI
|
||||
GIT_TAG main
|
||||
)
|
||||
FetchContent_MakeAvailable(ftxui)
|
||||
|
||||
add_executable(keystroke main.cpp)
|
||||
target_link_libraries(keystroke sqlite3)
|
||||
|
||||
add_executable(keystroke-stats stats.cpp)
|
||||
target_link_libraries(keystroke-stats
|
||||
sqlite3
|
||||
ftxui::screen
|
||||
ftxui::dom
|
||||
ftxui::component
|
||||
)
|
||||
Reference in New Issue
Block a user