Getting Started¶
When using JCMsuite
from your own C/C++ application the jcm_fetools.h header has to be included. When linking, your application jcm_fetools and jcm_geo dlls have to be provided.
To compile and link your application with JCMsuite
you need to add $$JCMROOT/include
to your include path and link against the two dlls jcm_fetools
and jcm_geo
.
When you are using the qmake tool for Makefile generation the following entries should be included in the corresponding .pro file:
INCLUDEPATH += $$JCMROOT/include
LIBS += -L$$JCMROOT/lib
LIBS += -ljcm_fetools -ljcm_geo
where JCMROOT
points to the installation directory of JCMsuite
and needs to be defined beforehand.