2
0
mikymod 12 жил өмнө
parent
commit
e33fda4d11

+ 1 - 1
engine/compilers/BundleCompiler.h

@@ -37,7 +37,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 namespace crown
 {
 
-class BundleCompiler
+class CE_EXPORT BundleCompiler
 {
 public:
 

+ 1 - 1
engine/compilers/lua/LuaCompiler.h

@@ -31,7 +31,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 namespace crown
 {
 
-class LuaCompiler : public Compiler
+class CE_EXPORT LuaCompiler : public Compiler
 {
 public:
 

+ 1 - 1
engine/compilers/mesh/MeshCompiler.h

@@ -49,7 +49,7 @@ struct MeshVertex
 	}
 };
 
-class MeshCompiler : public Compiler
+class CE_EXPORT MeshCompiler : public Compiler
 {
 public:
 

+ 1 - 1
engine/compilers/package/PackageCompiler.h

@@ -33,7 +33,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 namespace crown
 {
 
-class PackageCompiler : public Compiler
+class CE_EXPORT PackageCompiler : public Compiler
 {
 public:
 

+ 1 - 1
engine/compilers/texture/TextureCompiler.h

@@ -47,7 +47,7 @@ struct TGAHeader
 	char		image_descriptor;	// 11h  Image descriptor byte
 };
 
-class TextureCompiler : public Compiler
+class CE_EXPORT TextureCompiler : public Compiler
 {
 public: