diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2016-10-24 18:17:55 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2016-10-24 18:17:55 +0200 |
| commit | 6a9bec71f164a74d384f09718d23495f8200d6b1 (patch) | |
| tree | 9d3f817247ac480c0c28cb10b1e370f1c135f41a /src/makefile.vc | |
| parent | a8e73a544ca446fe3579f2b300ee398bef59da28 (diff) | |
| download | PROJ-6a9bec71f164a74d384f09718d23495f8200d6b1.tar.gz PROJ-6a9bec71f164a74d384f09718d23495f8200d6b1.zip | |
Generic coordinates (#431)
* Pipeline preliminaries
Introducing the PJ_OBSERVATION data type as the basis for generic geodetic
transformations.
Also introducing the elements of a new minimalistic API focused on
generic geodetic transformations. This API is documented in the new
proj.h header, and is orthogonal (non-intrusive) wrt. the existing API
from proj_api.h
Finally added a large amount of comments to the somewhat intractable
projects.h, and extended the PJ object with a number of additional
ellipsoidal parameters of general geodetic usefulness.
The PJ elements fwdobs and invobs extend fwd3d and inv3d in a homologous
way to how fwd3d and inv3d extend fwd and inv.
Diffstat (limited to 'src/makefile.vc')
| -rw-r--r-- | src/makefile.vc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/makefile.vc b/src/makefile.vc index 6f63bc61..f06a769a 100644 --- a/src/makefile.vc +++ b/src/makefile.vc @@ -58,9 +58,13 @@ support = \ pj_ctx.obj pj_fileapi.obj pj_log.obj pj_apply_vgridshift.obj \ pj_strtod.obj pj_run_selftests.obj pj_generic_selftest.obj +pipeline = \ + pj_observation.obj + geodesic = geodesic.obj + LIBOBJ = $(support) $(pseudo) $(azimuthal) $(conic) $(cylinder) $(misc) \ - $(geodesic) + $(geodesic) $(pipeline) PROJEXE_OBJ = proj.obj gen_cheb.obj p_series.obj emess.obj CS2CSEXE_OBJ = cs2cs.obj gen_cheb.obj p_series.obj emess.obj GEODEXE_OBJ = geod.obj geod_set.obj geod_interface.obj emess.obj @@ -146,4 +150,3 @@ install: all copy proj_api.h $(INSTDIR)\include copy projects.h $(INSTDIR)\include copy geodesic.h $(INSTDIR)\include - |
