diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-06-20 10:25:09 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-06-20 10:28:48 +0200 |
| commit | a4b92ca698770dc64639e51c76edb5dee16d2792 (patch) | |
| tree | 68f2dd6d99f50f5dd5d875703a1999863e9a650a /CMakeLists.txt | |
| parent | c5f8cd91186adbe9c68835675a019449cc275c6d (diff) | |
| download | ttwhy-a4b92ca698770dc64639e51c76edb5dee16d2792.tar.xz ttwhy-a4b92ca698770dc64639e51c76edb5dee16d2792.zip | |
lib: switch to policy based scanner design
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 390afbc..12536ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,10 +61,11 @@ target_sources("ttwhy-core" PUBLIC "ttwhy/routers/echo.cppm" "ttwhy/routers/mod.cppm" - "ttwhy/scanners/ansi.cppm" "ttwhy/scanners/concepts.cppm" - "ttwhy/scanners/mod.cppm" "ttwhy/scanners/events.cppm" + "ttwhy/scanners/mod.cppm" + "ttwhy/scanners/terminal_policies.cppm" + "ttwhy/scanners/terminal_scanner.cppm" ) target_include_directories("ttwhy-core" PUBLIC @@ -111,7 +112,7 @@ if(BUILD_TESTING) add_executable("ttwhy::tests" ALIAS "ttwhy-tests") target_sources("ttwhy-tests" PRIVATE - "ttwhy/scanners/ansi.tests.cpp" + "ttwhy/scanners/terminal_scanner.tests.cpp" ) target_link_libraries("ttwhy-tests" PRIVATE |
