drop keyplot man page/cmake #455

pull/458/head
nick black 4 years ago committed by Nick Black
parent 2c2da61c72
commit c717673458

@ -410,7 +410,7 @@ if(USE_DOXYGEN)
endif()
endif()
# notcurses-input and notcurses-keyplot
# notcurses-input
file(GLOB INPUTSRCS CONFIGURE_DEPENDS src/input/input.cpp)
add_executable(notcurses-input ${INPUTSRCS})
target_include_directories(notcurses-input
@ -431,27 +431,6 @@ target_compile_definitions(notcurses-input
FORTIFY_SOURCE=2
)
file(GLOB KEYPLOTSRCS CONFIGURE_DEPENDS src/input/keyplot.cpp)
add_executable(notcurses-keyplot ${KEYPLOTSRCS})
target_include_directories(notcurses-keyplot
PRIVATE
include
"${PROJECT_BINARY_DIR}/include"
)
target_link_libraries(notcurses-keyplot
PRIVATE
Threads::Threads
notcurses++
)
target_compile_options(notcurses-keyplot
PRIVATE
-Wall -Wextra -W -Wshadow ${DEBUG_OPTIONS}
)
target_compile_definitions(notcurses-keyplot
PRIVATE
FORTIFY_SOURCE=2
)
# notcurses-ncreel
file(GLOB NCREELSRCS CONFIGURE_DEPENDS src/ncreel/*.cpp)
add_executable(notcurses-ncreel ${NCREELSRCS})
@ -711,7 +690,6 @@ install(FILES
install(PROGRAMS src/pydemo/notcurses-pydemo DESTINATION bin)
install(TARGETS notcurses-demo DESTINATION bin)
install(TARGETS notcurses-input DESTINATION bin)
install(TARGETS notcurses-keyplot DESTINATION bin)
install(TARGETS notcurses-ncreel DESTINATION bin)
if(${USE_TESTS})
install(TARGETS notcurses-tester DESTINATION bin)

@ -20,7 +20,6 @@
<a href="colloquy.1.html">colloquy</a>—attractive terminal dialogs<br/>
<a href="notcurses-demo.1.html">notcurses-demo</a>—shows off some notcurses features<br/>
<a href="notcurses-input.1.html">notcurses-input</a>—reads and decodes input events<br/>
<a href="notcurses-keyplot.1.html">notcurses-input</a>—plots input events over time<br/>
<a href="notcurses-ncreel.1.html">notcurses-ncreel</a>—experiments with ncreels<br/>
<a href="notcurses-pydemo.1.html">notcurses-pydemo</a>—validates the Python wrappers<br/>
<a href="notcurses-tester.1.html">notcurses-tester</a>—unit test driver<br/>

@ -1,29 +0,0 @@
% notcurses-keyplot(1)
% nick black <nickblack@linux.com>
% v1.2.5
# NAME
notcurses-keyplot - Plot input events
# SYNOPSIS
**notcurses-keyplot**
# DESCRIPTION
**notcurses-keyplot** watches for keyboard, mouse, and synthesized events, and
plots occurrences by type over the last minute. To exit, generate EOF (usually
Ctrl+'d').
# OPTIONS
# NOTES
Mouse events are only generated for button presses, and for movement while a
button is held down.
# SEE ALSO
**notcurses(3)**,
**notcurses_keyplot(3)**
Loading…
Cancel
Save