aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/server/lexer/CMakeLists.txt
blob: 1f053a611f62009bccc4b34f377e829aaf7c7200 (plain) (tree)
1
2
3
4
5
6
7

                                             

                                            
                                           
                                          
                                                                            
find_package(Boost REQUIRED COMPONENTS regex)

file(GLOB_RECURSE lexer_src "*.cpp" "*.hpp")
add_library(lexer ${lexer_src})
target_include_directories(lexer PUBLIC ..)
target_link_libraries(lexer PUBLIC common)
target_link_libraries(lexer PRIVATE Boost::disable_autolinking Boost::regex)