fix: jump cannot work properly when there are multi users

This commit is contained in:
ShootingStarDragons 2025-11-18 23:59:36 +09:00
commit 940d3e62db
4 changed files with 17 additions and 2 deletions

View file

@ -42,6 +42,7 @@ endif()
# default. In most cases, you should add new options to specific targets instead
# of modifying this function.
function(APPLY_STANDARD_SETTINGS TARGET)
target_compile_options(${TARGET} PRIVATE -Wno-deprecated)
target_compile_features(${TARGET} PUBLIC cxx_std_14)
target_compile_options(${TARGET} PRIVATE -Wall -Werror)
target_compile_options(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:-O3>")