Removed Boost dependency in language distinction.

As Boost isn’t used in the rest of this project anymore, this commit
removes the unnecessary dependency to boost::bimap just for language
detection, and replaces it with a simple std::map instead.
This commit is contained in:
2017-10-28 15:44:37 +02:00
parent 1631a70a0b
commit 72fc7493b2
4 changed files with 10 additions and 31 deletions

View File

@@ -3,7 +3,6 @@ set(target tests)
file(GLOB core_sources "*.cpp")
set(includes
${Boost_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}/include
${PROJECT_SOURCE_DIR}/lib/catch/single_include
${PROJECT_SOURCE_DIR}/lib/tokenize/include
@@ -14,7 +13,6 @@ set(includes
set(libraries
stdc++fs
${Boost_LIBRARIES}
plasp
)