From a070c649ddbe70a22f6265b9f5b48f6bde7eac08 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 26 Oct 2024 18:29:44 +0200 Subject: add readline cli routines --- CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 98c41b3..af125c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,8 +10,13 @@ project(main CXX) add_executable(main) +target_include_directories(main PRIVATE .) + add_subdirectory(backend) add_subdirectory(frontend) -target_link_libraries(main pugixml) +target_link_libraries(main + pugixml + readline +) -- cgit v1.2.3