-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from r-barnes/Develop
Fix Compiler Warnings
- Loading branch information
Showing
6 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Linux Compilation Instructions | ||
============================== | ||
|
||
Type `make` on the command line to initiate compilation. | ||
|
||
It may be necessary to modify `makefile`: | ||
|
||
* Uncomment the line `INCDIRS=-I/usr/lib/openmpi/include -I/usr/include/gdal` | ||
* On the line beginning with `all :` remove the `clean` target from the end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ email: [email protected] | |
#include "ogr_api.h" | ||
// #include "tiffIO.h" Part of commonLib.h | ||
#include <ogr_spatialref.h> | ||
#include<math.h>; | ||
#include <math.h> | ||
#include "commonLib.h" | ||
#include <iostream> | ||
using namespace std; | ||
|