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