9b483fb336
- aggiornamento prototipi - aggiunto tipo DBLMATRIX - aggiunte per Nesting Automatico.
36 lines
953 B
C
36 lines
953 B
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2013-2013
|
|
//----------------------------------------------------------------------------
|
|
// File : EgtLibVer.h Data : 20.11.13 Versione : 1.3a1
|
|
// Contenuto : Dichiarazione macro per versioni librerie Egt*.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 20.11.13 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
// Direttorio librerie
|
|
#define EGTLIBDIR "/EgtDev/Lib/"
|
|
|
|
// Dichiarazione suffisso librerie
|
|
#if defined( _WIN64)
|
|
#if defined( _DEBUG)
|
|
#define EGTLIBVER "D64"
|
|
#else
|
|
#define EGTLIBVER "R64"
|
|
#endif
|
|
#elif defined( _WIN32)
|
|
#if defined( _DEBUG)
|
|
#define EGTLIBVER "D32"
|
|
#else
|
|
#define EGTLIBVER "R32"
|
|
#endif
|
|
#endif
|
|
|
|
// Direttorio librerie esterne
|
|
#define EGTEXTDIR "/EgtDev/Extern/"
|