kill redundant files

This commit is contained in:
AzaezelX 2023-06-14 21:43:56 -05:00
parent 1fa750d51c
commit c1daeffe06
19 changed files with 0 additions and 1762 deletions

View file

@ -1,160 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(assimp)
addPathRec("${libDir}/assimp/code")
addPath("${libDir}/assimp/code/Importer")
addPath("${libDir}/assimp/contrib")
addPath("${libDir}/assimp/contrib/clipper")
addPath("${libDir}/assimp/contrib/irrXML")
addPath("${libDir}/assimp/contrib/Open3DGC")
addPath("${libDir}/assimp/contrib/openddlparser")
addPath("${libDir}/assimp/contrib/poly2tri")
#addPath("${libDir}/assimp/contrib/rapidjson")
#addPath("${libDir}/assimp/contrib/rapidjson/include")
#addPath("${libDir}/assimp/contrib/rapidjson/include/rapidjson")
addPath("${libDir}/assimp/contrib/unzip")
addPath("${libDir}/assimp/contrib/utf8cpp")
addPath("${libDir}/assimp/contrib/zip")
addPath("${libDir}/zlib") #use T3D's included
addDef(ASSIMP_BUILD_NO_OWN_ZLIB)
# Disable all exporters, none should be needed but functionality
# is there if needed later on in development
# Specifically the export as DAE functionality already enabled in engine
addDef(ASSIMP_BUILD_NO_EXPORT)
# Some Common file format imports NOT disabled
#addDef(ASSIMP_BUILD_NO_GLTF_IMPORTER)
#addDef(ASSIMP_BUILD_NO_FBX_IMPORTER)
#addDef(ASSIMP_BUILD_NO_MS3D_IMPORTER)
#addDef(ASSIMP_BUILD_NO_OBJ_IMPORTER)
#addDef(ASSIMP_BUILD_NO_LWO_IMPORTER)
#addDef(ASSIMP_BUILD_NO_BLEND_IMPORTER)
#addDef(ASSIMP_BUILD_NO_COLLADA_IMPORTER)
# List of Importers to enable imporing of a specific file type
# add a # to comment out the line.
addDef(ASSIMP_BUILD_NO_3DS_IMPORTER)
addDef(ASSIMP_BUILD_NO_3MF_IMPORTER)
addDef(ASSIMP_BUILD_NO_AC_IMPORTER)
addDef(ASSIMP_BUILD_NO_AMF_IMPORTER)
addDef(ASSIMP_BUILD_NO_ASE_IMPORTER)
addDef(ASSIMP_BUILD_NO_ASSBIN_IMPORTER)
addDef(ASSIMP_BUILD_NO_B3D_IMPORTER)
addDef(ASSIMP_BUILD_NO_BVH_IMPORTER)
addDef(ASSIMP_BUILD_NO_C4D_IMPORTER)
addDef(ASSIMP_BUILD_NO_COB_IMPORTER)
addDef(ASSIMP_BUILD_NO_CSM_IMPORTER)
addDef(ASSIMP_BUILD_NO_DXF_IMPORTER)
addDef(ASSIMP_BUILD_NO_HMP_IMPORTER)
addDef(ASSIMP_BUILD_NO_IFC_IMPORTER)
addDef(ASSIMP_BUILD_NO_STEP_IMPORTER)
addDef(ASSIMP_BUILD_NO_IRR_IMPORTER)
addDef(ASSIMP_BUILD_NO_IRRMESH_IMPORTER)
addDef(ASSIMP_BUILD_NO_LWS_IMPORTER)
addDef(ASSIMP_BUILD_NO_M3D_IMPORTER)
addDef(ASSIMP_BUILD_NO_MD2_IMPORTER)
addDef(ASSIMP_BUILD_NO_MD3_IMPORTER)
addDef(ASSIMP_BUILD_NO_MD5_IMPORTER)
addDef(ASSIMP_BUILD_NO_MDC_IMPORTER)
addDef(ASSIMP_BUILD_NO_MDL_IMPORTER)
addDef(ASSIMP_BUILD_NO_MMD_IMPORTER)
addDef(ASSIMP_BUILD_NO_NDO_IMPORTER)
addDef(ASSIMP_BUILD_NO_NFF_IMPORTER)
addDef(ASSIMP_BUILD_NO_OFF_IMPORTER)
addDef(ASSIMP_BUILD_NO_OGRE_IMPORTER)
addDef(ASSIMP_BUILD_NO_OPENGEX_IMPORTER)
addDef(ASSIMP_BUILD_NO_PLY_IMPORTER)
addDef(ASSIMP_BUILD_NO_Q3BSP_IMPORTER)
addDef(ASSIMP_BUILD_NO_Q3D_IMPORTER)
addDef(ASSIMP_BUILD_NO_RAW_IMPORTER)
addDef(ASSIMP_BUILD_NO_SIB_IMPORTER)
addDef(ASSIMP_BUILD_NO_SMD_IMPORTER)
addDef(ASSIMP_BUILD_NO_STL_IMPORTER)
addDef(ASSIMP_BUILD_NO_TERRAGEN_IMPORTER)
addDef(ASSIMP_BUILD_NO_3D_IMPORTER)
addDef(ASSIMP_BUILD_NO_X_IMPORTER)
addDef(ASSIMP_BUILD_NO_X3D_IMPORTER)
addDef(ASSIMP_BUILD_NO_XGL_IMPORTER)
# ALL exporters are disabled at the start of the definition blocks
# if you want to disable only specific file types
# comment out the "addDef(ASSIMP_BUILD_NO_EXPORT)" higher in this text
#addDef(ASSIMP_BUILD_NO_3DS_EXPORTER)
#addDef(ASSIMP_BUILD_NO_3MF_EXPORTER)
#addDef(ASSIMP_BUILD_NO_ASSBIN_EXPORTER)
#addDef(ASSIMP_BUILD_NO_ASSJSON_EXPORTER)
#addDef(ASSIMP_BUILD_NO_ASSXML_EXPORTER)
addDef(ASSIMP_BUILD_NO_COLLADA_EXPORTER)
addDef(ASSIMP_BUILD_NO_FBX_EXPORTER)
addDef(ASSIMP_BUILD_NO_GLTF_EXPORTER)
#addDef(ASSIMP_BUILD_NO_M3D_EXPORTER)
#addDef(ASSIMP_BUILD_NO_OBJ_EXPORTER)
#addDef(ASSIMP_BUILD_NO_OPENGEX_EXPORTER)
#addDef(ASSIMP_BUILD_NO_PLY_EXPORTER)
#addDef(ASSIMP_BUILD_NO_STEP_EXPORTER)
#addDef(ASSIMP_BUILD_NO_STL_EXPORTER)
#addDef(ASSIMP_BUILD_NO_X_EXPORTER)
#addDef(ASSIMP_BUILD_NO_X3D_EXPORTER)
addDef(ASSIMP_IGNORE_GIT_HASH)
SET(GIT_COMMIT_HASH 0)
SET(GIT_BRANCH 0)
SET(ASSIMP_VERSION_MAJOR 5)
SET(ASSIMP_VERSION_MINOR 2)
SET(ASSIMP_VERSION_PATCH 3)
SET(ASSIMP_PACKAGE_VERSION "5_2_3")
CONFIGURE_FILE(
${libDir}/assimp/revision.h.in
${libDir}/assimp/revision.h
)
CONFIGURE_FILE(
${libDir}/assimp/include/assimp/config.h.in
${libDir}/assimp/include/assimp/config.h
)
addInclude(${libDir}/assimp)
addInclude(${libDir}/assimp/include/)
addInclude(${libDir}/assimp/include/assimp)
addInclude(${libDir}/assimp/contrib)
addInclude(${libDir}/assimp/contrib/clipper)
addInclude(${libDir}/assimp/contrib/irrXML)
addInclude(${libDir}/assimp/contrib/Open3DGC)
addInclude(${libDir}/assimp/contrib/openddlparser)
addInclude(${libDir}/assimp/contrib/poly2tri)
addInclude(${libDir}/assimp/contrib/pugixml/src)
addInclude(${libDir}/assimp/contrib/pugixml/contrib)
addInclude(${libDir}/assimp/contrib/rapidjson)
addInclude(${libDir}/assimp/contrib/rapidjson/include)
addInclude(${libDir}/assimp/contrib/unzip)
addInclude(${libDir}/assimp/contrib/utf8cpp)
addInclude(${libDir}/assimp/contrib/zip)
addInclude(${libDir}/zlib) #use T3D's included
finishLibrary()

View file

@ -1,39 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(collada)
addPath("${libDir}/collada/src/1.4/dom")
addPath("${libDir}/collada/src/dae")
addPath("${libDir}/collada/src/modules/LIBXMLPlugin")
addPath("${libDir}/collada/src/modules/stdErrPlugin")
addPath("${libDir}/collada/src/modules/STLDatabase")
addDef(DOM_INCLUDE_TINYXML)
addDef(PCRE_STATIC)
addInclude(${libDir}/collada/include)
addInclude(${libDir}/collada/include/1.4)
addInclude(${libDir}/pcre)
addInclude(${libDir}/tinyxml)
finishLibrary()

View file

@ -1,29 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(convexDecomp)
if(UNIX)
addDef(LINUX)
endif()
finishLibrary("${libDir}/convexDecomp")

View file

@ -1,36 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2016 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(glad)
addPath("${libDir}/glad/src")
# TODO EGL support if we ever use EGL instead of GLX
if (WIN32)
addPath("${libDir}/glad/src/wgl")
elseif (UNIX AND NOT APPLE)
addPath("${libDir}/glad/src/glx")
endif()
addInclude("${libDir}/glad/include")
finishLibrary()

View file

@ -1,42 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2015 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(libbullet)
addPath( "${libDir}/bullet/src" )
addPath( "${libDir}/bullet/src/BulletCollision" )
addPath( "${libDir}/bullet/src/BulletCollision/BroadphaseCollision" )
addPath( "${libDir}/bullet/src/BulletCollision/CollisionDispatch" )
addPath( "${libDir}/bullet/src/BulletCollision/CollisionShapes" )
addPath( "${libDir}/bullet/src/BulletCollision/Gimpact" )
addPath( "${libDir}/bullet/src/BulletCollision/NarrowPhaseCollision" )
addPath( "${libDir}/bullet/src/BulletDynamics" )
addPath( "${libDir}/bullet/src/BulletDynamics/Character" )
addPath( "${libDir}/bullet/src/BulletDynamics/ConstraintSolver" )
addPath( "${libDir}/bullet/src/BulletDynamics/Dynamics" )
addPath( "${libDir}/bullet/src/BulletDynamics/Vehicle" )
addPath( "${libDir}/bullet/src/LinearMath" )
addInclude( "${libDir}/bullet/src" )
finishLibrary()

View file

@ -1,44 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(libogg)
include(CheckIncludeFiles)
# Configure config_type.h
check_include_files(inttypes.h INCLUDE_INTTYPES_H)
check_include_files(stdint.h INCLUDE_STDINT_H)
check_include_files(sys/types.h INCLUDE_SYS_TYPES_H)
set(SIZE16 int16_t)
set(USIZE16 uint16_t)
set(SIZE32 int32_t)
set(USIZE32 uint32_t)
set(SIZE64 int64_t)
configure_file(${libDir}/libogg/include/ogg/config_types.h.in ${libDir}/libogg/include/ogg/config_types.h @ONLY)
addPath("${libDir}/libogg" REC)
addInclude(${libDir}/libogg/include)
finishLibrary()

View file

@ -1,44 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(libtheora)
addPath( "${libDir}/libtheora" )
addPathRec( "${libDir}/libtheora/include" )
addPath( "${libDir}/libtheora/lib" )
addPath( "${libDir}/libtheora/lib/dec" )
addPath( "${libDir}/libtheora/lib/enc" )
if(WIN32)
addPath( "${libDir}/libtheora/lib/dec/x86_vc" )
addPath( "${libDir}/libtheora/lib/enc/x86_32_vs" )
else()
addPath( "${libDir}/libtheora/lib/dec/x86" )
addPath( "${libDir}/libtheora/lib/enc/x86_32" )
endif()
addDef(TORQUE_OGGTHEORA)
addDef(TORQUE_OGGVORIBS)
addInclude(${libDir}/libogg/include)
addInclude(${libDir}/libtheora/include)
finishLibrary()

View file

@ -1,35 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(libvorbis)
addPathRec("${libDir}/libvorbis")
addDef(TORQUE_OGGVORBIS)
addInclude(${libDir}/libvorbis/include)
addInclude(${libDir}/libogg/include)
if(UNIX)
addInclude(${libDir}/libvorbis/lib)
endif()
finishLibrary()

View file

@ -1,25 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(ljpeg)
finishLibrary("${libDir}/ljpeg")

View file

@ -1,58 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(lpng)
if (APPLE AND TORQUE_MACOS_UNIVERSAL_BINARY)
addPath("${libDir}/lpng/arm")
set(CMAKE_XCODE_ATTRIBUTE_PER_ARCH_CFLAGS_x86_64 "-DPNG_INTEL_SSE_OPT=1 -DPNG_ARM_NEON_OPT=0")
set(CMAKE_XCODE_ATTRIBUTE_PER_ARCH_CFLAGS_arm64 "-DPNG_ARM_NEON_OPT=1 -DPNG_INTEL_SSE_OPT=0")
else()
# Enables NEON for libpng
if ( TORQUE_CPU_ARM32 OR TORQUE_CPU_ARM64 )
set(PNG_ARM_NEON on CACHE STRING "" FORCE)
add_definitions(-DPNG_ARM_NEON_OPT=1)
addPath("${libDir}/lpng/arm")
else()
set(PNG_ARM_NEON off CACHE STRING "" FORCE)
add_definitions(-DPNG_ARM_NEON_OPT=0)
endif()
# Enables SSE for libpng - also takes care of compiler warnings.
if ( TORQUE_CPU_X32 OR TORQUE_CPU_X64 )
set(PNG_INTEL_SSE on CACHE STRING "" FORCE)
add_definitions(-DPNG_INTEL_SSE_OPT=1)
addPath("${libDir}/lpng/intel")
else()
set(PNG_INTEL_SSE off CACHE STRING "" FORCE)
add_definitions(-DPNG_INTEL_SSE_OPT=0)
endif()
endif()
mark_as_advanced(PNG_INTEL_SSE)
mark_as_advanced(PNG_ARM_NEON)
addInclude(${libDir}/zlib)
finishLibrary("${libDir}/${PROJECT_NAME}")

View file

@ -1,29 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(nativeFileDialogs)
addPath("${libDir}/nativeFileDialogs" REC)
addInclude(${libDir}/nativeFileDialogs/include)
finishLibrary()

View file

@ -1,31 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(opcode)
addPath("${libDir}/${PROJECT_NAME}")
addPath("${libDir}/${PROJECT_NAME}/Ice")
addDef(TORQUE_OPCODE)
addDef(ICE_NO_DLL)
finishLibrary()

View file

@ -1,32 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(pcre)
addDef(PCRE_STATIC)
addDef(HAVE_CONFIG_H)
finishLibrary("${libDir}/pcre")
if(WIN32)
set_property(TARGET pcre PROPERTY COMPILE_FLAGS /TP) #/TP = compile as C++
endif()

View file

@ -1,40 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
# Recast library
project(recast)
# Source
addPathRec( "${libDir}/recast/DebugUtils/Source" )
addPathRec( "${libDir}/recast/Recast/Source" )
addPathRec( "${libDir}/recast/Detour/Source" )
addPathRec( "${libDir}/recast/DetourCrowd/Source" )
addPathRec( "${libDir}/recast/DetourTileCache/Source" )
# Additional includes
addInclude( "${libDir}/recast/DebugUtils/Include" )
addInclude( "${libDir}/recast/Recast/Include" )
addInclude( "${libDir}/recast/Detour/Include" )
addInclude( "${libDir}/recast/DetourTileCache/Include" )
addInclude( "${libDir}/recast/DetourCrowd/Include" )
finishLibrary()

View file

@ -1,28 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2015 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(sqlite)
addPath("${libDir}/sqlite")
addInclude("${libDir}/sqlite")
finishLibrary()

View file

@ -1,25 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(squish)
finishLibrary("${libDir}/${PROJECT_NAME}")

View file

@ -1,25 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(tinyxml)
finishLibrary("${libDir}/${PROJECT_NAME}")

View file

@ -1,25 +0,0 @@
# -----------------------------------------------------------------------------
# Copyright (c) 2014 GarageGames, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
project(zlib)
finishLibrary("${libDir}/${PROJECT_NAME}")

File diff suppressed because it is too large Load diff