forked from Autodesk/arnold-usd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
56 lines (41 loc) · 1.25 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
project(arnold-usd)
cmake_minimum_required(VERSION 3.20)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" 0)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/utils" 0)
list(APPEND CMAKE_MODULE_PATH "${USD_LOCATION}/lib/cmake/" 0)
# Define the project and build options
include(options)
# Global required packagse
find_package(USD REQUIRED)
find_package(Arnold REQUIRED)
# Include build helper functions
include(build)
# Include default compiler options
include(defaults)
# Adding libs and plugins
add_subdirectory(libs)
add_subdirectory(plugins)
if (BUILD_USDGENSCHEMA_ARNOLD)
message(STATUS "Building custom usdGenSchema")
add_subdirectory(tools/usdgenschema)
endif()
# Building the schemas
if (BUILD_SCHEMAS)
add_subdirectory(schemas)
install(FILES plugInfo.json
DESTINATION "${PREFIX_SCHEMA}")
endif ()
if (BUILD_DOCS)
add_subdirectory(docs)
endif ()
if (BUILD_TESTSUITE)
enable_testing()
add_subdirectory(testsuite)
endif ()
if (NOT BUILD_WITH_USD_STATIC)
if (BUILD_RENDER_DELEGATE OR BUILD_NDR_PLUGIN OR BUILD_USD_IMAGING_PLUGIN OR BUILD_SCENE_DELEGATE)
install(FILES plugInfo.json
DESTINATION "${PREFIX_PLUGINS}")
endif ()
endif()
install(FILES LICENSE.md DESTINATION .)