From fb33199d99862ef6d6bde108401a24f73d5fb5a2 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 25 May 2017 22:34:45 +0200 Subject: [PATCH] GLTFImporter: exclude headers from build whem no_glft_importer is defined. --- code/glTFAsset.h | 10 +++++++--- code/glTFAssetWriter.h | 10 +++++++--- code/glTFExporter.h | 6 +++++- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/code/glTFAsset.h b/code/glTFAsset.h index 8e45fec..41d0dfd 100644 --- a/code/glTFAsset.h +++ b/code/glTFAsset.h @@ -46,8 +46,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * KHR_binary_glTF: full * KHR_materials_common: full */ -#ifndef glTFAsset_H_INC -#define glTFAsset_H_INC +#ifndef GLTFASSET_H_INC +#define GLTFASSET_H_INC + +#ifndef ASSIMP_BUILD_NO_GLTF_IMPORTER #include #include @@ -1187,4 +1189,6 @@ namespace glTF // Include the implementation of the methods #include "glTFAsset.inl" -#endif +#endif // ASSIMP_BUILD_NO_GLTF_IMPORTER + +#endif // GLTFASSET_H_INC diff --git a/code/glTFAssetWriter.h b/code/glTFAssetWriter.h index ccfb998..186d32a 100644 --- a/code/glTFAssetWriter.h +++ b/code/glTFAssetWriter.h @@ -46,8 +46,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * KHR_binary_glTF: full * KHR_materials_common: full */ -#ifndef glTFAssetWriter_H_INC -#define glTFAssetWriter_H_INC +#ifndef GLTFASSETWRITER_H_INC +#define GLTFASSETWRITER_H_INC + +#ifndef ASSIMP_BUILD_NO_GLTF_IMPORTER #include "glTFAsset.h" @@ -88,4 +90,6 @@ public: // Include the implementation of the methods #include "glTFAssetWriter.inl" -#endif +#endif // ASSIMP_BUILD_NO_GLTF_IMPORTER + +#endif // GLTFASSETWRITER_H_INC diff --git a/code/glTFExporter.h b/code/glTFExporter.h index 835b67d..c813fff 100644 --- a/code/glTFExporter.h +++ b/code/glTFExporter.h @@ -45,6 +45,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef AI_GLTFEXPORTER_H_INC #define AI_GLTFEXPORTER_H_INC +#ifndef ASSIMP_BUILD_NO_GLTF_IMPORTER + #include #include @@ -111,4 +113,6 @@ namespace Assimp } -#endif +#endif // ASSIMP_BUILD_NO_GLTF_IMPORTER + +#endif // AI_GLTFEXPORTER_H_INC -- 2.7.4