2012-06-08 18:18:20 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
project(OpenSubdiv)
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
2013-02-01 18:09:55 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Obtain OpenSubdiv API version from version.h file
|
|
|
|
if(EXISTS "${CMAKE_SOURCE_DIR}/opensubdiv/version.h")
|
|
|
|
file(STRINGS "${CMAKE_SOURCE_DIR}/opensubdiv/version.h"
|
|
|
|
OpenSubdiv_VERSION REGEX "^#define OPENSUBDIV_VERSION .*$")
|
|
|
|
string(REPLACE "#define OPENSUBDIV_VERSION " "" OpenSubdiv_VERSION ${OpenSubdiv_VERSION})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
2012-06-08 18:18:20 +00:00
|
|
|
message(STATUS "Compiling ${CMAKE_PROJECT_NAME} version ${OpenSubdiv_VERSION}")
|
|
|
|
message(STATUS "Using cmake version ${CMAKE_VERSION}")
|
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2012-06-08 18:18:20 +00:00
|
|
|
# Specify the default install path
|
|
|
|
SET( CMAKE_INSTALL_PREFIX
|
|
|
|
${PROJECT_BINARY_DIR}/ )
|
|
|
|
|
2012-12-21 02:34:18 +00:00
|
|
|
# Allow install path to be overridden for cross-compile builds
|
|
|
|
if(LIBRARY_OUTPUT_PATH_ROOT)
|
|
|
|
SET( CMAKE_INSTALL_PREFIX
|
|
|
|
${LIBRARY_OUTPUT_PATH_ROOT}/ )
|
|
|
|
endif()
|
|
|
|
|
2012-06-08 18:18:20 +00:00
|
|
|
# Set the directory where the executables will be stored.
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH
|
|
|
|
${PROJECT_BINARY_DIR}/bin
|
|
|
|
CACHE PATH
|
|
|
|
"Directory where executables will be stored"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Set the directory where the libraries will be stored.
|
|
|
|
set(LIBRARY_OUTPUT_PATH
|
|
|
|
${PROJECT_BINARY_DIR}/lib
|
|
|
|
CACHE PATH
|
|
|
|
"Directory where all libraries will be stored"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Specify the list of directories to search for cmake modules.
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake
|
|
|
|
)
|
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Detect Clang (until a cmake version provides built-in variables)
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
|
|
|
set(CMAKE_COMPILER_IS_CLANGCC 1)
|
|
|
|
endif()
|
|
|
|
|
2013-01-22 22:47:46 +00:00
|
|
|
|
2013-02-08 21:51:11 +00:00
|
|
|
set(OSD_COMPILER_FLAGS)
|
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
# Disable spurrious warnings in gcc builds and clang
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANGCC)
|
|
|
|
|
|
|
|
# Turn on all warnings
|
2013-02-08 21:51:11 +00:00
|
|
|
list(APPEND OSD_COMPILER_FLAGS -Wall)
|
2013-01-24 21:40:43 +00:00
|
|
|
|
|
|
|
# HBR uses the offsetof macro on a templated struct, which appears
|
|
|
|
# to spurriously set off this warning in both gccc and Clang
|
2013-02-08 21:51:11 +00:00
|
|
|
list(APPEND OSD_COMPILER_FLAGS -Wno-invalid-offsetof)
|
2013-01-24 21:40:43 +00:00
|
|
|
|
|
|
|
# FAR and OSD have templated virtual function implementations that trigger
|
|
|
|
# a lot of hidden virtual function overloads (some of them spurrious).
|
|
|
|
# Disable those for now in Clang.
|
|
|
|
if(CMAKE_COMPILER_IS_CLANGCC)
|
2013-02-08 21:51:11 +00:00
|
|
|
list(APPEND OSD_COMPILER_FLAGS -Wno-overloaded-virtual)
|
2013-01-24 21:40:43 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
elseif(MSVC)
|
|
|
|
|
|
|
|
# Turn on all warnings
|
2013-02-08 21:51:11 +00:00
|
|
|
list(APPEND OSD_COMPILER_FLAGS /Wall)
|
2013-01-24 21:40:43 +00:00
|
|
|
|
|
|
|
# MSVC is unfortunately not standard conforming with regards to
|
|
|
|
# the alternative names for logical and bitwise operators:
|
|
|
|
# http://stackoverflow.com/questions/555505/c-alternative-tokens
|
|
|
|
# http://stackoverflow.com/questions/6006526/c-writing-or-instead-of
|
|
|
|
#
|
|
|
|
# This can be solved by including iso646.h, but that is a rather
|
|
|
|
# unsatisfactory solution since we then always have to remember to
|
|
|
|
# include this header file. Instead we define these operators
|
|
|
|
# ourselves as command line arguments to cl.exe.
|
|
|
|
#
|
|
|
|
# An alternative would be to compile with the /Za option
|
|
|
|
# (but unfortunately that breaks other code):
|
|
|
|
# http://msdn.microsoft.com/en-us/library/0k0w269d.aspx
|
2013-02-08 21:51:11 +00:00
|
|
|
list(APPEND OSD_COMPILER_FLAGS
|
2013-01-24 21:40:43 +00:00
|
|
|
/Dand=&&
|
|
|
|
/Dand_eq=&=
|
|
|
|
/Dbitand=&
|
|
|
|
/Dbitor=|
|
|
|
|
/Dcompl=~
|
|
|
|
/Dnot=!
|
|
|
|
/Dnot_eq=!=
|
|
|
|
/Dor=||
|
|
|
|
/Dor_eq=|=
|
|
|
|
# nvcc does not seem to like a caret being the last character
|
|
|
|
# in a command line defined preprocessor symbol, so add an
|
|
|
|
# empty trailing comment to avoid this.
|
|
|
|
/Dxor=^/**/
|
|
|
|
/Dxor_eq=^=
|
|
|
|
)
|
|
|
|
|
2013-02-08 21:51:11 +00:00
|
|
|
|
|
|
|
list(APPEND OSD_COMPILER_FLAGS
|
2013-01-24 21:40:43 +00:00
|
|
|
/W3 # Use warning level recommended for production purposes.
|
|
|
|
/WX # Treat all compiler warnings as errors.
|
2013-02-10 02:02:49 +00:00
|
|
|
|
|
|
|
# these warnings are being triggered from inside VC's header files
|
|
|
|
# warning C4350: behavior change: 'member1' called instead of 'member2'
|
2013-02-14 17:44:11 +00:00
|
|
|
/wd4350
|
2013-02-10 02:02:49 +00:00
|
|
|
# warning C4548: expression before comma has no effect; expected expression with side-effect
|
2013-02-14 17:44:11 +00:00
|
|
|
/wd4548
|
2013-01-24 21:40:43 +00:00
|
|
|
|
|
|
|
# Make sure WinDef.h does not define min and max macros which
|
|
|
|
# will conflict with std::min() and std::max().
|
|
|
|
/DNOMINMAX
|
|
|
|
|
|
|
|
# Make sure the constants in <math.h> get defined.
|
|
|
|
/D_USE_MATH_DEFINES
|
|
|
|
|
|
|
|
# Do not enforce MSVC's safe CRT replacements.
|
|
|
|
/D_CRT_SECURE_NO_WARNINGS
|
|
|
|
|
|
|
|
# Disable checked iterators and iterator debugging. Visual Studio
|
|
|
|
# 2008 does not implement std::vector::data(), so we need to take the
|
|
|
|
# address of std::vector::operator[](0) to get the memory location of
|
|
|
|
# a vector's underlying data storage. This does not work for an empty
|
|
|
|
# vector if checked iterators or iterator debugging is enabled.
|
|
|
|
/D_SECURE_SCL=0
|
|
|
|
/D_HAS_ITERATOR_DEBUGGING=0
|
|
|
|
)
|
2013-02-08 21:51:11 +00:00
|
|
|
|
|
|
|
# Turn off a duplicate LIBCMT linker warning
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS
|
|
|
|
"${CMAKE_EXE_LINKER_FLAGS} /NODEFAULTLIB:libcmt.lib /NODEFAULTLIB:msvcrt.lib")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS
|
|
|
|
"${CMAKE_SHARED_LINKER_FLAGS} /NODEFAULTLIB:libcmt.lib /NODEFAULTLIB:msvcrt.lib")
|
|
|
|
|
2013-01-10 18:47:50 +00:00
|
|
|
endif()
|
|
|
|
|
2013-02-08 21:51:11 +00:00
|
|
|
add_definitions(${OSD_COMPILER_FLAGS})
|
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
2012-06-08 18:18:20 +00:00
|
|
|
# Ignore rules that will re-run cmake (this will avoid constant
|
|
|
|
# reloading of the generated Visual Studio project).
|
|
|
|
set(CMAKE_SUPPRESS_REGENERATION TRUE)
|
|
|
|
|
2012-06-14 21:03:30 +00:00
|
|
|
# Check for dependencies
|
2013-01-24 21:40:43 +00:00
|
|
|
if(NOT NO_OMP)
|
|
|
|
find_package(OpenMP)
|
|
|
|
endif()
|
2012-06-14 21:03:30 +00:00
|
|
|
find_package(OpenGL)
|
2012-12-20 18:25:41 +00:00
|
|
|
find_package(OpenGLES)
|
2013-01-31 23:34:35 +00:00
|
|
|
find_package(OpenCL 1.1)
|
|
|
|
find_package(CUDA 4.0)
|
|
|
|
find_package(GLFW 2.7.0)
|
|
|
|
find_package(PTex 2.0)
|
2013-02-07 19:37:00 +00:00
|
|
|
find_package(PythonInterp 2.6)
|
|
|
|
find_package(SWIG 1.3.40)
|
2013-02-08 22:32:01 +00:00
|
|
|
find_package(Doxygen)
|
2012-06-14 21:03:30 +00:00
|
|
|
|
2012-12-21 02:34:18 +00:00
|
|
|
if (NOT APPLE AND OPENGL_FOUND)
|
2012-08-04 02:51:27 +00:00
|
|
|
find_package(GLEW REQUIRED)
|
2012-06-14 21:03:30 +00:00
|
|
|
endif()
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
if (WIN32)
|
|
|
|
find_package(DXSDK)
|
|
|
|
endif()
|
|
|
|
|
2013-02-02 20:53:33 +00:00
|
|
|
if (NOT NO_GCD AND APPLE)
|
|
|
|
set(GCD_FOUND 1)
|
|
|
|
endif()
|
|
|
|
|
2013-01-31 23:34:35 +00:00
|
|
|
find_package(Maya 201200)
|
2012-06-14 00:37:56 +00:00
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
# Warn about missing dependencies that will cause parts of OpenSubdiv to be
|
|
|
|
# disabled. Also, add preprocessor defines that can be used in the source
|
|
|
|
# code to determine if a specific dependency is present or not.
|
|
|
|
|
2013-02-02 20:53:33 +00:00
|
|
|
if(GCD_FOUND)
|
|
|
|
add_definitions( -DOPENSUBDIV_HAS_GCD )
|
|
|
|
endif()
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
if(OPENMP_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_OPENMP
|
|
|
|
${OpenMP_CXX_FLAGS}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"OpenMP was not found : support for OMP parallel compute kernels "
|
|
|
|
"will be diabled in Osd. If your compiler supports OpenMP "
|
|
|
|
"directives, please refer to the FindOpenMP.cmake shared module "
|
|
|
|
"in your cmake installation.")
|
|
|
|
endif()
|
|
|
|
|
2013-01-31 23:34:35 +00:00
|
|
|
if(GLFW_FOUND AND (GLFW_VERSION VERSION_EQUAL 3.0 OR GLFW_VERSION VERSION_GREATER 3.0))
|
|
|
|
add_definitions( -DGLFW_VERSION_3 )
|
|
|
|
endif()
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
# note : (GLSL transform feedback kernels require GL 4.2)
|
|
|
|
if(GLEW_FOUND AND OPENGL_4_2_FOUND)
|
2012-08-04 02:51:27 +00:00
|
|
|
add_definitions(
|
2012-12-11 01:15:13 +00:00
|
|
|
-DOPENSUBDIV_HAS_GLSL_TRANSFORM_FEEDBACK
|
2012-08-04 02:51:27 +00:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
2012-12-11 01:15:13 +00:00
|
|
|
"OpenGL 4.2 was not found : support for GLSL transform feedback kernels "
|
2012-08-04 02:51:27 +00:00
|
|
|
"will be disabled in Osd. If you have an OpenGL SDK installed "
|
|
|
|
"(version 4.2 or above), please refer to the FindOpenGL.cmake "
|
|
|
|
"shared module in your cmake installation.")
|
|
|
|
endif()
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
# note : (GLSL compute shader kernels require GL 4.3)
|
|
|
|
if(GLEW_FOUND AND OPENGL_4_3_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_GLSL_COMPUTE
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"OpenGL 4.3 was not found : support for GLSL compute shader kernels "
|
|
|
|
"will be disabled in Osd. If you have an OpenGL SDK installed "
|
|
|
|
"(version 4.3 or above), please refer to the FindOpenGL.cmake "
|
|
|
|
"shared module in your cmake installation.")
|
|
|
|
endif()
|
|
|
|
|
2012-12-20 18:25:41 +00:00
|
|
|
if(OPENGLES_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_OPENGLES
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
if(OPENCL_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_OPENCL
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"OpenCL was not found : support for OpenCL parallel compute kernels "
|
|
|
|
"will be disabled in Osd. If you have the OpenCL SDK installed, "
|
|
|
|
"please refer to the FindOpenCL.cmake in ${PROJECT_SOURCE_DIR}/cmake.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CUDA_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_CUDA
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"CUDA was not found : support for CUDA parallel compute kernels "
|
|
|
|
"will be disabled in Osd. If you have the CUDA SDK installed, please "
|
|
|
|
"refer to the FindCUDA.cmake shared module in your cmake installation.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(PTEX_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_PTEX
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"Ptex was not found : the OpenSubdiv Ptex example will not be "
|
|
|
|
"available. If you do have Ptex installed and see this message, "
|
|
|
|
"please add your Ptex path to FindPTex.cmake in "
|
|
|
|
"${PROJECT_SOURCE_DIR}/cmake or set it through the PTEX_LOCATION "
|
|
|
|
"cmake command line argument or environment variable."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MAYA_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_MAYA
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"Maya was not found : the OpenSubdiv mayaViwer plugin will not be "
|
|
|
|
"available. If you do have Maya installed and see this message, "
|
|
|
|
"please add your Maya path to FindMaya.cmake in "
|
|
|
|
"${PROJECT_SOURCE_DIR}/cmake or set it through the MAYA_LOCATION "
|
|
|
|
"cmake command line argument or environment variable."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2013-02-06 16:53:44 +00:00
|
|
|
if(PYTHONINTERP_FOUND AND SWIG_FOUND)
|
|
|
|
message(STATUS "Python and SWIG found. Looking for numpy...")
|
2013-02-05 05:10:58 +00:00
|
|
|
execute_process(
|
|
|
|
COMMAND
|
|
|
|
${PYTHON_EXECUTABLE} -c "import numpy; print numpy.get_include()"
|
|
|
|
OUTPUT_VARIABLE NUMPY_INCLUDE_PATH
|
|
|
|
RESULT_VARIABLE NUMPY_ERR
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
if(NUMPY_ERR)
|
|
|
|
message(WARNING "Unable to import numpy.")
|
|
|
|
else()
|
2013-02-07 03:24:40 +00:00
|
|
|
message(STATUS "Numpy package has been located.")
|
|
|
|
set(PYCMD ${PYTHON_EXECUTABLE} setup.py build )
|
|
|
|
list(APPEND PYCMD --osddir=${LIBRARY_OUTPUT_PATH} )
|
|
|
|
list(APPEND PYCMD --build-platlib=${PROJECT_BINARY_DIR}/python )
|
|
|
|
list(APPEND PYCMD --build-temp=${PROJECT_BINARY_DIR}/temp )
|
2013-02-08 21:51:11 +00:00
|
|
|
|
|
|
|
# grab all compiler definitions and add '-D'
|
|
|
|
get_directory_property( TMP DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS )
|
|
|
|
foreach(FLAG ${TMP})
|
|
|
|
list(APPEND SWIG_COMPILE_FLAGS "-D${FLAG}")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# append platform specific compiler flags
|
|
|
|
list(APPEND SWIG_COMPILE_FLAGS ${OSD_COMPILER_FLAGS})
|
|
|
|
list(APPEND PYCMD --cxxflags="${SWIG_COMPILE_FLAGS}" )
|
|
|
|
|
|
|
|
# add Swig -builtin optimization build flag
|
|
|
|
if(SWIG_VERSION VERSION_GREATER 2.0.4)
|
|
|
|
list(APPEND SWIG_OPTS "-builtin")
|
|
|
|
endif()
|
|
|
|
list(APPEND PYCMD --swigopts="${SWIG_OPTS}" )
|
|
|
|
|
2013-02-05 05:10:58 +00:00
|
|
|
add_custom_command(
|
2013-02-07 03:24:40 +00:00
|
|
|
OUTPUT ${PROJECT_BINARY_DIR}/python/osd
|
|
|
|
COMMAND ${PYCMD}
|
2013-02-17 00:28:05 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/python
|
2013-02-06 16:53:44 +00:00
|
|
|
DEPENDS osd_static_cpu osd_dynamic_cpu
|
|
|
|
COMMENT "Building Python bindings with distutils"
|
2013-02-05 05:10:58 +00:00
|
|
|
)
|
2013-02-06 16:53:44 +00:00
|
|
|
add_custom_target(python ALL
|
2013-02-07 03:24:40 +00:00
|
|
|
DEPENDS ${PROJECT_BINARY_DIR}/python/osd
|
|
|
|
)
|
|
|
|
install(CODE "execute_process(
|
|
|
|
WORKING_DIRECTORY ../python
|
|
|
|
COMMAND ${PYCMD} install --user)"
|
|
|
|
)
|
2013-02-05 05:10:58 +00:00
|
|
|
endif()
|
2013-02-08 21:51:11 +00:00
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"Python / Swig not found : pythong bindings and examples will no be "
|
|
|
|
"available. If you do have Python and Swig installed and see this "
|
|
|
|
"message, please check the default FindPython.cmake module."
|
|
|
|
)
|
2013-02-05 05:10:58 +00:00
|
|
|
endif()
|
|
|
|
|
2012-06-21 01:20:41 +00:00
|
|
|
# Link examples & regressions dynamically against Osd
|
2012-12-11 01:15:13 +00:00
|
|
|
set( OSD_LINK_TARGET osd_dynamic_cpu osd_dynamic_gpu )
|
2012-06-21 01:20:41 +00:00
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
add_definitions(
|
2012-08-04 02:51:27 +00:00
|
|
|
# Link against the static version of GLEW.
|
2012-06-21 01:20:41 +00:00
|
|
|
-DGLEW_STATIC
|
|
|
|
)
|
|
|
|
# Link examples & regressions statically against Osd for
|
|
|
|
# Windows until all the kinks can be worked out.
|
2012-12-11 01:15:13 +00:00
|
|
|
set( OSD_LINK_TARGET osd_static_cpu osd_static_gpu )
|
|
|
|
|
|
|
|
if (DXSDK_FOUND)
|
|
|
|
add_definitions(
|
|
|
|
-DOPENSUBDIV_HAS_DX11SDK
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
message(WARNING
|
|
|
|
"DirectX11 SDK was not found. "
|
|
|
|
"If you do have DXSDK installed and see this message, "
|
|
|
|
"please add your sdk path to FindDirectX.cmake in "
|
|
|
|
"${PROJECT_SOURCE_DIR}/cmake or set it through the "
|
|
|
|
"DXSDK_LOCATION cmake command line argument or "
|
|
|
|
"environment variable."
|
|
|
|
)
|
|
|
|
endif()
|
2012-06-21 01:20:41 +00:00
|
|
|
endif()
|
2012-06-08 18:18:20 +00:00
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# General-use macros
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-06-11 02:59:04 +00:00
|
|
|
# Macro for adding a cuda executable if cuda is found and a regular
|
|
|
|
# executable otherwise.
|
2012-08-04 02:51:27 +00:00
|
|
|
macro(_add_possibly_cuda_executable target)
|
2012-06-11 02:59:04 +00:00
|
|
|
if(CUDA_FOUND)
|
|
|
|
cuda_add_executable(${target} ${ARGN})
|
|
|
|
else()
|
|
|
|
add_executable(${target} ${ARGN})
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-06-11 02:59:04 +00:00
|
|
|
# Macro for adding a cuda library if cuda is found and a regular
|
|
|
|
# library otherwise.
|
2012-08-04 02:51:27 +00:00
|
|
|
macro(_add_possibly_cuda_library target)
|
2012-06-11 02:59:04 +00:00
|
|
|
if(CUDA_FOUND)
|
|
|
|
cuda_add_library(${target} ${ARGN})
|
|
|
|
else()
|
|
|
|
add_library(${target} ${ARGN})
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
# Macro for adding a (potentially cuda) executable.
|
2013-01-29 23:54:18 +00:00
|
|
|
macro(_add_glfw_executable target)
|
2012-08-04 02:51:27 +00:00
|
|
|
|
|
|
|
_add_possibly_cuda_executable(${target} ${ARGN})
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
# Windows needs some of its dependency dll's copied into the same
|
|
|
|
# directory as the executable.
|
2013-01-29 23:54:18 +00:00
|
|
|
set( LIBRARIES ${GLFW_LIBRARIES})
|
2012-08-04 02:51:27 +00:00
|
|
|
foreach (LIB ${LIBRARIES} )
|
|
|
|
string(REPLACE ".lib" ".dll" DLL ${LIB})
|
|
|
|
string(REPLACE ".LIB" ".DLL" DLL ${DLL})
|
|
|
|
add_custom_command(
|
|
|
|
TARGET ${target} POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
${DLL}
|
|
|
|
$<TARGET_FILE_DIR:${target}>
|
|
|
|
)
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endmacro()
|
|
|
|
|
2013-01-24 21:40:43 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Build targets
|
2012-06-11 02:59:04 +00:00
|
|
|
|
2012-06-08 18:18:20 +00:00
|
|
|
add_subdirectory(opensubdiv)
|
|
|
|
|
2012-12-20 18:25:41 +00:00
|
|
|
if(NOT ANDROID AND NOT IOS) # XXXdyu
|
|
|
|
add_subdirectory(regression)
|
|
|
|
endif()
|
2012-06-09 00:06:35 +00:00
|
|
|
|
|
|
|
add_subdirectory(examples)
|
2012-10-07 00:53:51 +00:00
|
|
|
|
2013-02-08 22:32:01 +00:00
|
|
|
if (DOXYGEN_FOUND)
|
|
|
|
add_subdirectory(documentation)
|
|
|
|
endif()
|