Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ install(FILES ${CMAKE_BINARY_DIR}/etc/gitinfo.txt DESTINATION ${CMAKE_INSTALL_SY
#---Recurse into the given subdirectories. This does not actually cause another cmake executable
# to run. The same process will walk through the project's entire directory structure.
add_subdirectory (core)
add_subdirectory (builtins/textinput) # hard coded builtin for core
add_subdirectory (math)
add_subdirectory (hist)
add_subdirectory (tree)
Expand Down
31 changes: 31 additions & 0 deletions builtins/textinput/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright (C) 1995-2019, Rene Brun and Fons Rademakers.
# All rights reserved.
#
# For the licensing terms see $ROOTSYS/LICENSE.
# For the list of contributors see $ROOTSYS/README/CREDITS.

############################################################################
# CMakeLists.txt file for building textinput package for ROOT
############################################################################

target_sources(Core PRIVATE
Editor.cpp
History.cpp
KeyBinding.cpp
Range.cpp
SignalHandler.cpp
StreamReader.cpp
StreamReaderUnix.cpp
StreamReaderWin.cpp
TerminalConfigUnix.cpp
TerminalDisplay.cpp
TerminalDisplayUnix.cpp
TerminalDisplayWin.cpp
TextInputContext.cpp
TextInput.cpp
)

target_include_directories(Core
PRIVATE
../ # to be able to call #include "textinput/header.h" from ROOT core files
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 0 additions & 14 deletions core/textinput/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,6 @@ set_property(TARGET Core APPEND PROPERTY DICT_HEADERS Getline.h)
target_sources(Core PRIVATE
src/Getline_color.cxx
src/Getline.cxx
src/textinput/Editor.cpp
src/textinput/History.cpp
src/textinput/KeyBinding.cpp
src/textinput/Range.cpp
src/textinput/SignalHandler.cpp
src/textinput/StreamReader.cpp
src/textinput/StreamReaderUnix.cpp
src/textinput/StreamReaderWin.cpp
src/textinput/TerminalConfigUnix.cpp
src/textinput/TerminalDisplay.cpp
src/textinput/TerminalDisplayUnix.cpp
src/textinput/TerminalDisplayWin.cpp
src/textinput/TextInputContext.cpp
src/textinput/TextInput.cpp
)

target_include_directories(Core
Expand Down
2 changes: 1 addition & 1 deletion documentation/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ EXCLUDE = ../../interpreter/ \
../../core/clib/ \
../../core/lzma/ \
../../core/newdelete/ \
../../core/textinput/ \
../../builtins/textinput/ \
../../builtins/mathtext/ \
../../graf3d/ftgl/ \
../../graf3d/x3d/ \
Expand Down
2 changes: 1 addition & 1 deletion documentation/doxygen/makeinput.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ echo " ../../bindings/r/ \\" >> Doxyfile_INPUT
# echo " ../../core/clib/ \\" >> Doxyfile_INPUT
# echo " ../../core/lzma/ \\" >> Doxyfile_INPUT
# echo " ../../core/newdelete/ \\" >> Doxyfile_INPUT
# echo " ../../core/textinput/ \\" >> Doxyfile_INPUT
# echo " ../../builtins/textinput/ \\" >> Doxyfile_INPUT
# echo " ../../builtins/mathtext/ \\" >> Doxyfile_INPUT
# echo " ../../graf3d/ftgl/ \\" >> Doxyfile_INPUT
# echo " ../../graf3d/x3d/ \\" >> Doxyfile_INPUT
Expand Down
Loading