Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_FreeGlut_Tools / INC / envFreeGlutTools.h
1 /**
2 * Bilat_FreeGlut_Tools
3 *
4 * version : 002
5 *
6 * Cédric Bilat cedric.bilat@he-arc.ch
7 * Stähli Joaquim joaquim.stahli@he-arc.ch
8 */
9
10 #ifndef ENV_FREEGLUT_TOOLS_H
11 #define ENV_FREEGLUT_TOOLS_H
12
13 #include "dllHelper.h"
14
15 #ifdef CBI_FREEGLUT_TOOLS_DLL // defined if API is compiled as a DLL
16 #ifdef CBI_FREEGLUT_TOOLS_EXPORT // defined if we are building the API DLL (instead of using it)
17 #define CBI_FREEGLUT_TOOLS HELPER_DLL_EXPORT
18 #else
19 #define CBI_FREEGLUT_TOOLS HELPER_DLL_IMPORT
20 #endif
21 #define CBI_FREEGLUT_TOOLS_LOCAL HELPER_DLL_LOCAL
22 #else // CBI_FREEGLUT_TOOLS_DLL is not defined: this means API is a static lib.
23 #define CBI_FREEGLUT_TOOLS
24 #define CBI_FREEGLUT_TOOLS_LOCAL
25 #endif
26
27
28 #endif