2012-06-08 18:18:20 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# Copyright 2013 Pixar
|
2012-06-08 18:18:20 +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:
|
2012-06-08 18:18:20 +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.
|
2012-06-08 18:18:20 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# You may obtain a copy of the Apache License at
|
2012-06-08 18:18:20 +00:00
|
|
|
#
|
2013-09-26 19:04:57 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-18 21:19:50 +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.
|
2012-06-08 18:18:20 +00:00
|
|
|
#
|
|
|
|
|
2013-07-05 22:36:54 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2014-09-05 22:07:46 +00:00
|
|
|
# source & headers
|
|
|
|
set(SOURCE_FILES
|
2018-05-09 00:24:14 +00:00
|
|
|
bilinearPatchBuilder.cpp
|
|
|
|
catmarkPatchBuilder.cpp
|
2014-12-04 01:19:07 +00:00
|
|
|
error.cpp
|
2018-05-09 00:24:14 +00:00
|
|
|
loopPatchBuilder.cpp
|
2015-05-20 22:44:29 +00:00
|
|
|
patchBasis.cpp
|
2018-05-09 00:24:14 +00:00
|
|
|
patchBuilder.cpp
|
2014-11-25 20:41:19 +00:00
|
|
|
patchDescriptor.cpp
|
2014-10-29 17:53:17 +00:00
|
|
|
patchMap.cpp
|
2015-05-22 17:22:47 +00:00
|
|
|
patchTable.cpp
|
|
|
|
patchTableFactory.cpp
|
2015-04-20 06:25:43 +00:00
|
|
|
ptexIndices.cpp
|
2015-05-24 03:31:18 +00:00
|
|
|
stencilTable.cpp
|
2015-05-22 17:22:47 +00:00
|
|
|
stencilTableFactory.cpp
|
2015-05-22 20:07:54 +00:00
|
|
|
stencilBuilder.cpp
|
2015-06-02 23:27:19 +00:00
|
|
|
topologyDescriptor.cpp
|
2014-10-29 17:53:17 +00:00
|
|
|
topologyRefiner.cpp
|
|
|
|
topologyRefinerFactory.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(PRIVATE_HEADER_FILES
|
2018-05-09 00:24:14 +00:00
|
|
|
bilinearPatchBuilder.h
|
|
|
|
catmarkPatchBuilder.h
|
|
|
|
loopPatchBuilder.h
|
2015-05-29 16:33:31 +00:00
|
|
|
patchBasis.h
|
2018-05-09 00:24:14 +00:00
|
|
|
patchBuilder.h
|
|
|
|
sparseMatrix.h
|
2015-05-22 20:07:54 +00:00
|
|
|
stencilBuilder.h
|
2014-09-05 22:07:46 +00:00
|
|
|
)
|
|
|
|
|
2012-09-12 22:00:04 +00:00
|
|
|
set(PUBLIC_HEADER_FILES
|
2014-12-04 01:19:07 +00:00
|
|
|
error.h
|
2014-11-25 20:41:19 +00:00
|
|
|
patchDescriptor.h
|
2013-05-17 21:06:03 +00:00
|
|
|
patchParam.h
|
2013-06-13 20:58:23 +00:00
|
|
|
patchMap.h
|
2015-05-22 17:22:47 +00:00
|
|
|
patchTable.h
|
|
|
|
patchTableFactory.h
|
2015-05-24 01:56:36 +00:00
|
|
|
primvarRefiner.h
|
2015-04-20 06:25:43 +00:00
|
|
|
ptexIndices.h
|
2015-05-22 17:22:47 +00:00
|
|
|
stencilTable.h
|
|
|
|
stencilTableFactory.h
|
2015-06-02 23:27:19 +00:00
|
|
|
topologyDescriptor.h
|
2015-05-19 22:06:41 +00:00
|
|
|
topologyLevel.h
|
2014-09-05 22:07:46 +00:00
|
|
|
topologyRefiner.h
|
|
|
|
topologyRefinerFactory.h
|
|
|
|
types.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(DOXY_HEADER_FILES ${PUBLIC_HEADER_FILES})
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
if (NOT NO_LIB)
|
|
|
|
|
|
|
|
# Compile objs first for both the CPU and GPU libs -----
|
|
|
|
add_library(far_obj
|
|
|
|
OBJECT
|
|
|
|
${SOURCE_FILES}
|
|
|
|
${PRIVATE_HEADER_FILES}
|
|
|
|
${PUBLIC_HEADER_FILES}
|
|
|
|
)
|
|
|
|
|
2016-06-10 00:04:26 +00:00
|
|
|
set_target_properties(far_obj
|
|
|
|
PROPERTIES
|
|
|
|
FOLDER "opensubdiv"
|
|
|
|
)
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
endif()
|
2012-06-08 18:18:20 +00:00
|
|
|
|
2013-07-05 22:36:54 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2019-08-17 23:44:30 +00:00
|
|
|
osd_add_doxy_headers( "${DOXY_HEADER_FILES}" )
|
2013-07-05 22:36:54 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
install(
|
2014-04-09 20:43:38 +00:00
|
|
|
FILES
|
|
|
|
${PUBLIC_HEADER_FILES}
|
|
|
|
DESTINATION
|
|
|
|
"${CMAKE_INCDIR_BASE}/far"
|
|
|
|
PERMISSIONS
|
|
|
|
OWNER_READ
|
|
|
|
GROUP_READ
|
|
|
|
WORLD_READ )
|
2013-07-05 22:36:54 +00:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|