编译geos库遇到的问题及解决办法
作者:朱金灿
来源:http://www.cnblogs.com/clever101
把geos库下载下来,发现做得还很人性化,工程文件分别分开msvc80、msvc90和msvc10。如下图,分为两个方式:
可是我使用vs 2005编译geos_c_dll工程,倒是能编译成功,生成dll文件和lib文件,但是在外部调用,发现无法识别Envelope类的错误。再打开geos工程,看了一下,初步断定是Envelope类的错误,发现它的export.h是这样的:
#ifndef GEOS_EXPORT_H
#define GEOS_EXPORT_H
#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || \
defined( __BCPLUSPLUS__) || defined( __MWERKS__)
# if defined(GEOS_DLL_EXPORT)
# define GEOS_DLL __declspec(dllexport)
# elif defined(GEOS_DLL_IMPORT)
# define GEOS_DLL __declspec(dllimport)
# else
# define GEOS_DLL
# endif
#else
# define GEOS_DLL
#endif
#endif
#define GEOS_EXPORT_H
#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || \
defined( __BCPLUSPLUS__) || defined( __MWERKS__)
# if defined(GEOS_DLL_EXPORT)
# define GEOS_DLL __declspec(dllexport)
# elif defined(GEOS_DLL_IMPORT)
# define GEOS_DLL __declspec(dllimport)
# else
# define GEOS_DLL
# endif
#else
# define GEOS_DLL
#endif
#endif
我有点纳闷,因为geos_c_dll工程的预处理器明明已经定义了GEOS_DLL_EXPORT,后来我发现export.h的设置实际上是在geos_lib(即静态库工程),而geos_lib工程属性中却没没有预处理器GEOS_DLL_EXPORT,所以需要在geos_lib工程中添加预处理器GEOS_DLL_EXPORT。