10000 Don't require a C++ compiler by isaacbrodsky · Pull Request #107 · uber/h3 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Don't require a C++ compiler #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 30, 2018
Merged
Show file tree
Hide file tree
Changes from all 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. Retry
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ The public API of this library consists of the functions declared in file
- Internal `h3ToIjk` function for getting IJK+ coordinates from an index (#83)
- Internal `ijkDistance` function for determining the grid distance between IJK+ coordinates (#83)
- `h3ToIjk` filter application for experimenting with `h3ToIjk` (#83)
### Fixed
- Don't require a C++ compiler (#107)

## [3.0.8] - 2018-07-18
### Added
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
5BBB
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ file(READ VERSION H3_VERSION LIMIT_COUNT 1)
string(REPLACE "\n" "" H3_VERSION "${H3_VERSION}")
set(H3_SOVERSION 1)

project(h3 VERSION ${H3_VERSION})
project(h3 LANGUAGES C VERSION ${H3_VERSION})

set(H3_COMPILE_FLAGS "")
set(H3_LINK_FLAGS "")
Expand Down
0