blob: 68914d98414cb0c11b730c4828c38f5942a70664 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
file(GLOB_RECURSE lexer_src "*.cpp" "*.hpp")
add_library(lexer ${lexer_src})
target_include_directories(lexer PUBLIC ..)
target_link_libraries(lexer PUBLIC common)
find_package(Boost REQUIRED COMPONENTS regex)
target_link_libraries(lexer PRIVATE Boost::disable_autolinking Boost::regex)
|