File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Thumbs.db
47
47
/test /data /ch
48
48
/test /data /mld
49
49
/cmake /postinst
50
+ .gradle /
50
51
51
52
# Eclipse related files #
52
53
# ########################
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
- Changes from 6.0.0
3
3
- Misc:
4
+ - CHANGED: Update fmt library to version 11.2.0 [ #7238 ] ( https://github.com/Project-OSRM/osrm-backend/issues/7238 )
4
5
- ADDED: Add husky pre-commit hook for compiling and linting staged JS files [ #7228 ] ( https://github.com/Project-OSRM/osrm-backend/issues/7228 )
5
6
- CHANGED: Standardize linting configuration with ESM-specific rules [ #7229 ] ( https://github.com/Project-OSRM/osrm-backend/issues/7229 )
6
7
- CHANGED: Convert scripts from CommonJS to modern ESM format [ #7230 ] ( https://github.com/Project-OSRM/osrm-backend/pull/7230 )
Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
268
268
# using Visual Studio C++
269
269
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj" ) # avoid compiler error C1128 from scripting_environment_lua.cpp
270
270
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /DWIN32_LEAN_AND_MEAN" ) # avoid compiler error C2011 from dual #include of winsock.h and winsock2.h
271
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /utf-8" ) # support Unicode in fmt library
271
272
add_dependency_defines(-DBOOST_LIB_DIAGNOSTIC)
272
273
add_dependency_defines(-D_CRT_SECURE_NO_WARNINGS)
273
274
add_dependency_defines(-DNOMINMAX) # avoid min and max macros that can break compilation
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ VTZERO_PATH="mapbox/vtzero"
28
28
VTZERO_TAG=v1.1.0
29
29
30
30
FMT_PATH=" fmtlib/fmt"
31
- FMT_TAG=v10 .2.1
31
+ FMT_TAG=11 .2.0
32
32
33
33
FLATBUFFERS_PATH=" google/flatbuffers"
34
34
FLATBUFFERS_TAG=v24.3.25
You can’t perform that action at this time.
0 commit comments