diff --git a/CMakeLists.txt b/CMakeLists.txt index ef8bf358..ee484e23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,10 @@ project(glslang) if(WIN32) set(CMAKE_GENERATOR_TOOLSET "v110" CACHE STRING "Platform Toolset" FORCE) include(ChooseMSVCCRT.cmake) + add_definitions(-DGLSLANG_OSINCLUDE_WIN32) elseif(UNIX) add_definitions(-fPIC) + add_definitions(-DGLSLANG_OSINCLUDE_UNIX) else(WIN32) message("unkown platform") endif(WIN32) diff --git a/OGLCompilersDLL/InitializeDll.h b/OGLCompilersDLL/InitializeDll.h index 8a296793..2d245574 100644 --- a/OGLCompilersDLL/InitializeDll.h +++ b/OGLCompilersDLL/InitializeDll.h @@ -35,7 +35,7 @@ #define __INITIALIZEDLL_H -#include "osinclude.h" +#include "../glslang/OSDependent/osinclude.h" namespace glslang { diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 59bcb238..0277ef29 100755 --- a/StandAlone/StandAlone.cpp +++ b/StandAlone/StandAlone.cpp @@ -49,7 +49,7 @@ #include #include -#include "osinclude.h" +#include "../glslang/OSDependent/osinclude.h" extern "C" { SH_IMPORT_EXPORT void ShOutputHtml(); diff --git a/StandAlone/Worklist.h b/StandAlone/Worklist.h index c3040076..57dc0db7 100644 --- a/StandAlone/Worklist.h +++ b/StandAlone/Worklist.h @@ -35,7 +35,7 @@ #ifndef WORKLIST_H_INCLUDED #define WORKLIST_H_INCLUDED -#include "osinclude.h" +#include "../glslang/OSDependent/osinclude.h" #include #include diff --git a/glslang/CMakeLists.txt b/glslang/CMakeLists.txt index 98d2a6cc..878eca5d 100644 --- a/glslang/CMakeLists.txt +++ b/glslang/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8) if(WIN32) add_subdirectory(OSDependent/Windows) elseif(UNIX) - add_subdirectory(OSDependent/Linux) + add_subdirectory(OSDependent/Unix) else(WIN32) message("unkown platform") endif(WIN32) diff --git a/glslang/MachineIndependent/ParseHelper.cpp b/glslang/MachineIndependent/ParseHelper.cpp index 8a9b2694..96e18f63 100644 --- a/glslang/MachineIndependent/ParseHelper.cpp +++ b/glslang/MachineIndependent/ParseHelper.cpp @@ -37,7 +37,7 @@ #include "ParseHelper.h" #include "Scan.h" -#include "osinclude.h" +#include "../OSDependent/osinclude.h" #include #include diff --git a/glslang/MachineIndependent/PoolAlloc.cpp b/glslang/MachineIndependent/PoolAlloc.cpp index 7b018049..12f45cb8 100644 --- a/glslang/MachineIndependent/PoolAlloc.cpp +++ b/glslang/MachineIndependent/PoolAlloc.cpp @@ -36,7 +36,7 @@ #include "../Include/Common.h" #include "../Include/InitializeGlobals.h" -#include "osinclude.h" +#include "../OSDependent/osinclude.h" namespace glslang { diff --git a/glslang/OSDependent/Linux/CMakeLists.txt b/glslang/OSDependent/Unix/CMakeLists.txt similarity index 100% rename from glslang/OSDependent/Linux/CMakeLists.txt rename to glslang/OSDependent/Unix/CMakeLists.txt diff --git a/glslang/OSDependent/Linux/Makefile b/glslang/OSDependent/Unix/Makefile similarity index 100% rename from glslang/OSDependent/Linux/Makefile rename to glslang/OSDependent/Unix/Makefile diff --git a/glslang/OSDependent/Linux/osinclude.h b/glslang/OSDependent/Unix/osinclude.h similarity index 100% rename from glslang/OSDependent/Linux/osinclude.h rename to glslang/OSDependent/Unix/osinclude.h diff --git a/glslang/OSDependent/Linux/ossource.cpp b/glslang/OSDependent/Unix/ossource.cpp similarity index 100% rename from glslang/OSDependent/Linux/ossource.cpp rename to glslang/OSDependent/Unix/ossource.cpp diff --git a/glslang/OSDependent/osinclude.h b/glslang/OSDependent/osinclude.h new file mode 100644 index 00000000..ca262420 --- /dev/null +++ b/glslang/OSDependent/osinclude.h @@ -0,0 +1,46 @@ +// +//Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +//All rights reserved. +// +//Redistribution and use in source and binary forms, with or without +//modification, are permitted provided that the following conditions +//are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of 3Dlabs Inc. Ltd. nor the names of its +// contributors may be used to endorse or promote products derived +// from this software without specific prior written permission. +// +//THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +//"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +//LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +//FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +//COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +//INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +//BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +//LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +//CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +//LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +//ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +//POSSIBILITY OF SUCH DAMAGE. +// + +#ifndef __ROOT_OSINCLUDE_H +#define __ROOT_OSINCLUDE_H + +#if defined(GLSLANG_OSINCLUDE_WIN32) +#include "Windows/osinclude.h" +#elif defined(GLSLANG_OSINCLUDE_UNIX) +#include "Unix/osinclude.h" +#else +#error "Unknown platform" +#endif + +#endif // __ROOT_OSINCLUDE_H