2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# Copyright 2013 Pixar
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
|
|
# with the following modification; you may not use this file except in
|
|
|
|
# compliance with the Apache License and the following modification to it:
|
|
|
|
# Section 6. Trademarks. is deleted and replaced with:
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# 6. Trademarks. This License does not grant permission to use the trade
|
|
|
|
# names, trademarks, service marks, or product names of the Licensor
|
|
|
|
# and its affiliates, except as required to comply with Section 4(c) of
|
|
|
|
# the License and to reproduce the content of the NOTICE file.
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# You may obtain a copy of the Apache License at
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the Apache License with the above modification is
|
|
|
|
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the Apache License for the specific
|
|
|
|
# language governing permissions and limitations under the Apache License.
|
2013-05-10 02:18:05 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# source & headers
|
2014-09-05 22:07:46 +00:00
|
|
|
set(SOURCE_FILES
|
|
|
|
fvarLevel.cpp
|
|
|
|
fvarRefinement.cpp
|
|
|
|
level.cpp
|
2014-11-18 01:19:30 +00:00
|
|
|
quadRefinement.cpp
|
2014-09-05 22:07:46 +00:00
|
|
|
refinement.cpp
|
|
|
|
sparseSelector.cpp
|
2014-11-18 01:19:30 +00:00
|
|
|
triRefinement.cpp
|
2013-05-10 02:18:05 +00:00
|
|
|
)
|
|
|
|
|
2015-06-02 00:38:11 +00:00
|
|
|
set(PRIVATE_HEADER_FILES
|
|
|
|
quadRefinement.h
|
|
|
|
triRefinement.h
|
|
|
|
)
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
set(PUBLIC_HEADER_FILES
|
|
|
|
array.h
|
2015-05-28 03:44:06 +00:00
|
|
|
componentInterfaces.h
|
2014-09-05 22:07:46 +00:00
|
|
|
fvarLevel.h
|
|
|
|
fvarRefinement.h
|
|
|
|
level.h
|
|
|
|
refinement.h
|
|
|
|
sparseSelector.h
|
2015-04-27 00:04:18 +00:00
|
|
|
stackBuffer.h
|
2014-09-05 22:07:46 +00:00
|
|
|
types.h
|
2013-10-26 06:24:23 +00:00
|
|
|
)
|
|
|
|
|
2013-07-05 22:36:54 +00:00
|
|
|
set(DOXY_HEADER_FILES ${PUBLIC_HEADER_FILES})
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
|
2014-04-18 23:19:09 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
if (NOT NO_LIB)
|
2013-07-05 22:36:54 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
# Compile objs first for both the CPU and GPU libs -----
|
|
|
|
add_library(vtr_obj
|
|
|
|
OBJECT
|
|
|
|
${SOURCE_FILES}
|
|
|
|
${PRIVATE_HEADER_FILES}
|
|
|
|
${PUBLIC_HEADER_FILES}
|
|
|
|
)
|
2013-07-05 22:36:54 +00:00
|
|
|
|
2016-06-10 00:04:26 +00:00
|
|
|
set_target_properties(vtr_obj
|
|
|
|
PROPERTIES
|
|
|
|
FOLDER "opensubdiv"
|
|
|
|
)
|
|
|
|
|
2013-06-05 17:44:21 +00:00
|
|
|
endif()
|
|
|
|
|
2013-05-10 02:18:05 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2019-08-17 23:44:30 +00:00
|
|
|
osd_add_doxy_headers( "${DOXY_HEADER_FILES}" )
|
2013-05-10 02:18:05 +00:00
|
|
|
|
2014-04-09 20:43:38 +00:00
|
|
|
install(
|
2014-09-05 22:07:46 +00:00
|
|
|
FILES
|
2014-04-09 20:43:38 +00:00
|
|
|
${PUBLIC_HEADER_FILES}
|
|
|
|
DESTINATION
|
2014-09-05 22:07:46 +00:00
|
|
|
"${CMAKE_INCDIR_BASE}/vtr"
|
2014-04-09 20:43:38 +00:00
|
|
|
PERMISSIONS
|
|
|
|
OWNER_READ
|
|
|
|
GROUP_READ
|
|
|
|
WORLD_READ )
|
2013-05-10 02:18:05 +00:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|