blob: fffb5a3f7fbd2da4f66e810bfaea3d34fb81fd5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
file(GLOB_RECURSE lexer_cpp "*.cpp")
file(GLOB_RECURSE lexer_hpp "*.hpp")
add_library(lexer ${lexer_cpp} ${lexer_hpp})
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)
|