Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 1,757 Lines • ▼ Show 20 Lines | |||||
| if(WITH_BLENDER) | if(WITH_BLENDER) | ||||
| add_subdirectory(intern) | add_subdirectory(intern) | ||||
| add_subdirectory(extern) | add_subdirectory(extern) | ||||
| # source after intern and extern to gather all | # source after intern and extern to gather all | ||||
| # internal and external library information first, for test linking | # internal and external library information first, for test linking | ||||
| add_subdirectory(source) | add_subdirectory(source) | ||||
| elseif(WITH_CYCLES_STANDALONE) | elseif(WITH_CYCLES_STANDALONE) | ||||
| add_subdirectory(intern/glew-mx) | |||||
| add_subdirectory(intern/guardedalloc) | |||||
| add_subdirectory(intern/libc_compat) | |||||
| add_subdirectory(intern/numaapi) | |||||
| add_subdirectory(intern/sky) | |||||
| add_subdirectory(intern/cycles) | add_subdirectory(intern/cycles) | ||||
| add_subdirectory(extern/clew) | add_subdirectory(extern/clew) | ||||
| if(WITH_CYCLES_LOGGING) | |||||
| if(NOT WITH_SYSTEM_GFLAGS) | |||||
| add_subdirectory(extern/gflags) | |||||
| endif() | |||||
| add_subdirectory(extern/glog) | |||||
| endif() | |||||
| if(WITH_CUDA_DYNLOAD) | if(WITH_CUDA_DYNLOAD) | ||||
| add_subdirectory(extern/cuew) | add_subdirectory(extern/cuew) | ||||
| endif() | endif() | ||||
| if(NOT WITH_SYSTEM_GLEW) | if(NOT WITH_SYSTEM_GLEW) | ||||
| add_subdirectory(extern/glew) | add_subdirectory(extern/glew) | ||||
| endif() | endif() | ||||
| endif() | endif() | ||||
| ▲ Show 20 Lines • Show All 145 Lines • Show Last 20 Lines | |||||