Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-09-07 16:12:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-07 16:12:34 +0300
commit0774fdbeb67dc3acdf90b2dabd920dc9cd1ca521 (patch)
tree16d78acf87be75cf88a0547e781081345cd81b19 /intern/cycles/cmake/macros.cmake
parent0e5aa49e1d0edab553a3054b298a8c2f5ecaa16f (diff)
Cleanup: tabs in CMake files
Diffstat (limited to 'intern/cycles/cmake/macros.cmake')
-rw-r--r--intern/cycles/cmake/macros.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/cmake/macros.cmake b/intern/cycles/cmake/macros.cmake
index ad20916d471..c5fe5f672c0 100644
--- a/intern/cycles/cmake/macros.cmake
+++ b/intern/cycles/cmake/macros.cmake
@@ -182,15 +182,15 @@ macro(cycles_install_libraries target)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
install(
FILES
- ${TBB_ROOT_DIR}/lib/debug/tbb_debug${CMAKE_SHARED_LIBRARY_SUFFIX}
+ ${TBB_ROOT_DIR}/lib/debug/tbb_debug${CMAKE_SHARED_LIBRARY_SUFFIX}
${OPENVDB_ROOT_DIR}/bin/openvdb_d${CMAKE_SHARED_LIBRARY_SUFFIX}
- DESTINATION $<TARGET_FILE_DIR:${target}>)
+ DESTINATION $<TARGET_FILE_DIR:${target}>)
else()
install(
FILES
- ${TBB_ROOT_DIR}/lib/tbb${CMAKE_SHARED_LIBRARY_SUFFIX}
+ ${TBB_ROOT_DIR}/lib/tbb${CMAKE_SHARED_LIBRARY_SUFFIX}
${OPENVDB_ROOT_DIR}/bin/openvdb${CMAKE_SHARED_LIBRARY_SUFFIX}
- DESTINATION $<TARGET_FILE_DIR:${target}>)
+ DESTINATION $<TARGET_FILE_DIR:${target}>)
endif()
endif()
endmacro()