diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
commit | b564c10b13effed63c7b7dae25117e2e0a2c64e4 (patch) | |
tree | ea79cf0c9b254aac517f1024602b39615eedb010 /cmake/macros | |
parent | b0107802064a19d69ce06f7bcf8b8394695e6faf (diff) |
Core/Players: Implemented serverside validation of reserved/profane names
Closes #15357
New library dependency: Boost.Regex
Diffstat (limited to 'cmake/macros')
-rw-r--r-- | cmake/macros/ConfigureBoost.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/macros/ConfigureBoost.cmake b/cmake/macros/ConfigureBoost.cmake index 98caa5eb227..022d84246ef 100644 --- a/cmake/macros/ConfigureBoost.cmake +++ b/cmake/macros/ConfigureBoost.cmake @@ -29,7 +29,7 @@ if(WIN32) add_definitions(-D_WIN32_WINNT=${ver}) endif() -find_package(Boost 1.49 REQUIRED system filesystem thread program_options iostreams) +find_package(Boost 1.49 REQUIRED system filesystem thread program_options iostreams regex) add_definitions(-DBOOST_DATE_TIME_NO_LIB) add_definitions(-DBOOST_REGEX_NO_LIB) add_definitions(-DBOOST_CHRONO_NO_LIB) |