mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-25 21:10:08 +00:00
2b12ffc447
- remove ptexViewer from the build on OSX (doesnt work) - remove maya plugins from the build on OSX (until we have a compatible version available) glViewer fixes : - fix incorrect GLFW version check in #ifdefs (now done in cmake) - fix default program GL version (downgraded to 1.5 where necessary) - remove non core-profile GL calls (triggering errors) this should allow OSX 10.7 builds to produce a functional, if restricted, glViewer. fixes #111
103 lines
4.1 KiB
CMake
103 lines
4.1 KiB
CMake
#
|
|
# Copyright (C) Pixar. All rights reserved.
|
|
#
|
|
# This license governs use of the accompanying software. If you
|
|
# use the software, you accept this license. If you do not accept
|
|
# the license, do not use the software.
|
|
#
|
|
# 1. Definitions
|
|
# The terms "reproduce," "reproduction," "derivative works," and
|
|
# "distribution" have the same meaning here as under U.S.
|
|
# copyright law. A "contribution" is the original software, or
|
|
# any additions or changes to the software.
|
|
# A "contributor" is any person or entity that distributes its
|
|
# contribution under this license.
|
|
# "Licensed patents" are a contributor's patent claims that read
|
|
# directly on its contribution.
|
|
#
|
|
# 2. Grant of Rights
|
|
# (A) Copyright Grant- Subject to the terms of this license,
|
|
# including the license conditions and limitations in section 3,
|
|
# each contributor grants you a non-exclusive, worldwide,
|
|
# royalty-free copyright license to reproduce its contribution,
|
|
# prepare derivative works of its contribution, and distribute
|
|
# its contribution or any derivative works that you create.
|
|
# (B) Patent Grant- Subject to the terms of this license,
|
|
# including the license conditions and limitations in section 3,
|
|
# each contributor grants you a non-exclusive, worldwide,
|
|
# royalty-free license under its licensed patents to make, have
|
|
# made, use, sell, offer for sale, import, and/or otherwise
|
|
# dispose of its contribution in the software or derivative works
|
|
# of the contribution in the software.
|
|
#
|
|
# 3. Conditions and Limitations
|
|
# (A) No Trademark License- This license does not grant you
|
|
# rights to use any contributor's name, logo, or trademarks.
|
|
# (B) If you bring a patent claim against any contributor over
|
|
# patents that you claim are infringed by the software, your
|
|
# patent license from such contributor to the software ends
|
|
# automatically.
|
|
# (C) If you distribute any portion of the software, you must
|
|
# retain all copyright, patent, trademark, and attribution
|
|
# notices that are present in the software.
|
|
# (D) If you distribute any portion of the software in source
|
|
# code form, you may do so only under this license by including a
|
|
# complete copy of this license with your distribution. If you
|
|
# distribute any portion of the software in compiled or object
|
|
# code form, you may only do so under a license that complies
|
|
# with this license.
|
|
# (E) The software is licensed "as-is." You bear the risk of
|
|
# using it. The contributors give no express warranties,
|
|
# guarantees or conditions. You may have additional consumer
|
|
# rights under your local laws which this license cannot change.
|
|
# To the extent permitted under your local laws, the contributors
|
|
# exclude the implied warranties of merchantability, fitness for
|
|
# a particular purpose and non-infringement.
|
|
#
|
|
|
|
if( OPENGL_FOUND AND (GLEW_FOUND AND GLFW_FOUND) OR (APPLE AND GLFW_FOUND))
|
|
add_subdirectory(glViewer)
|
|
# add_subdirectory(simpleCpu)
|
|
# add_subdirectory(evalTest)
|
|
if(PTEX_FOUND AND (NOT APPLE))
|
|
# the ptexViewer example requires GL functionality not available on OSX
|
|
add_subdirectory(ptexViewer)
|
|
endif()
|
|
else()
|
|
set(MISSING "")
|
|
|
|
if (NOT OPENGL_FOUND)
|
|
list(APPEND MISSING OpenGL)
|
|
endif()
|
|
|
|
if (NOT GLEW_FOUND)
|
|
list(APPEND MISSING glew)
|
|
endif()
|
|
|
|
if (NOT GLFW_FOUND)
|
|
list(APPEND MISSING glfw)
|
|
endif()
|
|
|
|
message(WARNING
|
|
"The following libraries could not be found : ${MISSING}. "
|
|
"The glViewer and ptexViewer examples will not be available. "
|
|
"If you have these libraries installed, please specify their "
|
|
"path to cmake (through the GLEW_LOCATION and GLFW_LOCATION "
|
|
"command line arguments or environment variables)."
|
|
)
|
|
endif()
|
|
|
|
if(DXSDK_FOUND)
|
|
add_subdirectory(dxViewer)
|
|
endif()
|
|
|
|
# XXXX manuelk : turning off the maya plugin examples for now
|
|
if(MAYA_FOUND AND (NOT APPLE))
|
|
add_subdirectory(mayaViewer)
|
|
if(PTEX_FOUND)
|
|
add_subdirectory(mayaPtexViewer)
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(mutex)
|