From f44583f14e11c5e9e9e141538573ecbc6daf250b Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Mon, 30 Jul 2018 10:14:02 -0700 Subject: [PATCH 1/2] Don't require a C++ compiler --- CHANGELOG.md | 2 ++ CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a7213f4..7073740a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 (#106) ## [3.0.8] - 2018-07-18 ### Added diff --git a/CMakeLists.txt b/CMakeLists.txt index 490094d17..92c616431 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 "") From b7539f3bcdaeb10fa9e991d02ec8c236e6ab458b Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Mon, 30 Jul 2018 10:17:40 -0700 Subject: [PATCH 2/2] Fix changelog entry --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7073740a4..218f06991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ The public API of this library consists of the functions declared in file - 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 (#106) +- Don't require a C++ compiler (#107) ## [3.0.8] - 2018-07-18 ### Added