Enable SIMD optimizations for RapidJSON

This commit is contained in:
Kawe Mazidjatari 2023-09-07 11:18:00 +02:00
parent b85003a9ac
commit 5c3b7d1b56

View File

@ -40,7 +40,14 @@ macro( apply_project_settings )
"SPDLOG_COMPILED_LIB"
"SPDLOG_NO_EXCEPTIONS"
"CURL_STATICLIB"
"PLATFORM_64BITS" # Target is 64bits only.
# Must be explicitly defined to toggle SIMD optimizations for RapidJSON.
# Don't set this to anything higher than SSE2, as the game supports from
# SSE3 and higher, and the next level of optimizations in RapidJSON is SSE4.2.
"RAPIDJSON_SSE2"
# Target is 64bits only.
"PLATFORM_64BITS"
"${OPTION_GAMEDLL}"
)