+ add SMESH_version.h.cmake to set full version number instead of using compiler define + do not set include path of smesh globally + do not set library path of smesh globally + do not set HAVE_NETGEN define globally + improve using debug and release libs of smesh for MSVC
13 lines
370 B
CMake
13 lines
370 B
CMake
#ifndef SMESH_VERSION_H
|
|
#define SMESH_VERSION_H
|
|
|
|
/* SMESH_Version.h. Generated from SMESH_Version.h.cmake by cmake. */
|
|
|
|
// SMESH version
|
|
#define SMESH_VERSION_MAJOR ${SMESH_VERSION_MAJOR}
|
|
#define SMESH_VERSION_MINOR ${SMESH_VERSION_MINOR}
|
|
#define SMESH_VERSION_PATCH ${SMESH_VERSION_PATCH}
|
|
#define SMESH_VERSION_TWEAK ${SMESH_VERSION_TWEAK}
|
|
|
|
#endif // SMESH_VERSION_H
|