diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 18:29:44 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 18:29:44 +0200 |
commit | a070c649ddbe70a22f6265b9f5b48f6bde7eac08 (patch) | |
tree | 310c2a7f0ae51eff0172168673e64f50a01f01a1 /CMakeLists.txt | |
parent | 6781cee55a4e7f232eae3e5f2a652045412339ae (diff) |
add readline cli routines
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
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 +) |