Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ runs:
echo "ADDITIONAL_CMAKE_OPTIONS=-DCMAKE_CXX_COMPILER=cl.exe" >> $env:GITHUB_ENV
shell: ${{ inputs.shell_type }}

# Macで使うコンパイラを明示
- name: Setup Additional Cmake Options in Mac
if: runner.os != 'Windows'
run: |
echo "ADDITIONAL_CMAKE_OPTIONS=-DCMAKE_POLICY_VERSION_MINIMUM=3.5" >> $env:GITHUB_ENV
shell: ${{ inputs.shell_type }}
Comment thread
sevendev marked this conversation as resolved.
Outdated

- name: Configure CMake for Unity
run: >
cmake
Expand Down
2 changes: 1 addition & 1 deletion src/c_wrapper/vector_tile_downloader_c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ using namespace plateau::geometry;

DLL_STRING_VALUE_FUNC(plateau_vector_tile_downloader_calc_destination_path,
VectorTileDownloader,
handle->calcDestinationPath(index).string(), , int index)
handle->calcDestinationPath(index).u8string(), , int index)

DLL_VALUE_FUNC(plateau_vector_tile_downloader_get_tile,
VectorTileDownloader,
Expand Down
Loading