diff options
| author | Thomas Knudsen <thokn@sdfe.dk> | 2017-10-07 17:48:25 +0200 |
|---|---|---|
| committer | Thomas Knudsen <thokn@sdfe.dk> | 2017-10-12 14:38:50 +0200 |
| commit | 973c87c5115e34c60d65f702815edee169fcdd1e (patch) | |
| tree | 7076a86ec452a1e327cd337a5c85a260825b2447 /src/bin_gie.cmake | |
| parent | faca621657c5c325c54e6f4f7ea2bc6df386b328 (diff) | |
| download | PROJ-973c87c5115e34c60d65f702815edee169fcdd1e.tar.gz PROJ-973c87c5115e34c60d65f702815edee169fcdd1e.zip | |
gie.c and builtins.gie now able to reproduce internal test results
improved docs, improved strtod - avoid precision loss for very long fractions
Switch gie.c to use same framework as cct.c
numerous improvements in proj_strtod.c and gie.c
Add gie to the build system
Diffstat (limited to 'src/bin_gie.cmake')
| -rw-r--r-- | src/bin_gie.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bin_gie.cmake b/src/bin_gie.cmake new file mode 100644 index 00000000..ca6dde0e --- /dev/null +++ b/src/bin_gie.cmake @@ -0,0 +1,9 @@ +set(GIE_SRC gie.c proj_strtod.c) +set(GIE_INCLUDE optargpm.h) + +source_group("Source Files\\Bin" FILES ${GIE_SRC}) + +add_executable(gie ${GIE_SRC} ${GIE_INCLUDE}) +target_link_libraries(gie ${PROJ_LIBRARIES}) +install(TARGETS gie + RUNTIME DESTINATION ${BINDIR}) |
