Sean Ho
Sean Ho
Related self-packaging script is updated: https://github.com/sean0921/sac_debian_packager/tree/102.0-1%2Bsdp1.1
## Compilation ### GMT4 ```bash mkdir build CFLAGS='-DGMT_VER_4' cmake -Bbuild . make -C build #copy binary under bin/ to your path rm -rvf build/ ``` ### GMT5 or 6 ```bash...
Thanks for your feedback and helpful information! I'm trying to reproduce this problem, if there is any idea and related fix about this, I will post here. Thanks Sean
After [comparing](https://gist.github.com/sean0921/320ef2d5c5c9fe66eb0cc8b153626be8/revisions#diff-c1c3bb7e56696356c5b19c2b871a3ce46b24082ecd774a422f7999d7e7784313) two version of generated scripts. I found that I've ignored `GMT_VER_3_3_4 1` is always defined in [original version](https://github.com/alomax/NonLinLoc/blob/700ed91a2f94d6996a2baa679475a6767dac137b/src/Grid2GMT.c#L55). I will push related commits in this PR after this...
## Compilation ### GMT 4 Use original build procedure ### GMT 5 or 6 edit CMakeLists.txt to uncomment following line: ``` add_compile_options(-D GMT_VER_5) ``` then: ``` cd src rm CMakeCache.txt...
I have fixed this problem and simply wrote up the way to test new code in PR and `README.md`, and add contact info at the top of the file. Please...
It seems that `FONT_HEADING` in `gmt.conf` is not supported yet in [GMT 5.x](http://gmt.soest.hawaii.edu/doc/5.4.5/gmt.conf.html#font-parameters), which is used to replace `HEADER_FONT_SIZE` in GMT 4.x config. Maybe I will temporary remove this option...