mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-24 21:10:33 +05:00
MSVC adaption
This commit is contained in:
parent
6222d32e34
commit
ff3eaf1119
@ -9,7 +9,7 @@
|
|||||||
extern int id;
|
extern int id;
|
||||||
extern int ntasks;
|
extern int ntasks;
|
||||||
#endif
|
#endif
|
||||||
extern int printmessage_importance;
|
DLL_HEADER extern int printmessage_importance;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
// #include <iostream>
|
// #include <iostream>
|
||||||
/** output stream for testing.
|
/** output stream for testing.
|
||||||
testout is opened by main */
|
testout is opened by main */
|
||||||
extern ostream * testout;
|
DLL_HEADER extern ostream * testout;
|
||||||
|
|
||||||
/** use instead of cout */
|
/** use instead of cout */
|
||||||
extern ostream * mycout;
|
extern ostream * mycout;
|
||||||
|
@ -24,6 +24,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#define DLL_HEADER __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
#define DLL_HEADER
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define noDEMOVERSION
|
#define noDEMOVERSION
|
||||||
#define noDEVELOP
|
#define noDEVELOP
|
||||||
#define noSTEP
|
#define noSTEP
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
namespace netgen
|
namespace netgen
|
||||||
{
|
{
|
||||||
|
|
||||||
int printmessage_importance = 5;
|
int printmessage_importance = 5;
|
||||||
int printwarnings = 1;
|
int printwarnings = 1;
|
||||||
int printerrors = 1;
|
int printerrors = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user