diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-03 00:58:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-03 00:58:56 +0300 |
commit | ad748449fb2d6154f0d7677f2a933aa29919075b (patch) | |
tree | 11278ebbf3890823fb6bf85014ade1b62921ff6e /server/lexer/CMakeLists.txt | |
parent | update cmake-common (diff) | |
download | math-server-ad748449fb2d6154f0d7677f2a933aa29919075b.tar.gz math-server-ad748449fb2d6154f0d7677f2a933aa29919075b.zip |
lexer: split out testing-exposed functions
Diffstat (limited to '')
-rw-r--r-- | server/lexer/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lexer/CMakeLists.txt b/server/lexer/CMakeLists.txt index 65523a7..b62e47a 100644 --- a/server/lexer/CMakeLists.txt +++ b/server/lexer/CMakeLists.txt @@ -1,2 +1,2 @@ -add_library(lexer lexer.cpp token.cpp token_type.cpp) +add_library(lexer details/parse.cpp lexer.cpp token.cpp token_type.cpp) target_link_libraries(lexer PUBLIC common) |