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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-04 02:47:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-04 03:02:35 +0300
commita5c984a57d5fef45677876af15bff39632e5f552 (patch)
treeea841610c45199fa9eb5d20d1573b63bcaba00a2 /intern
parentd09c5bdc28a17e3c1cdfdd9805c50508894878dc (diff)
Cleanup: cmake indentation
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/app/CMakeLists.txt18
-rw-r--r--intern/cycles/test/CMakeLists.txt18
-rw-r--r--intern/quadriflow/CMakeLists.txt2
3 files changed, 21 insertions, 17 deletions
diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index d67a72ab7db..199ab8ce316 100644
--- a/intern/cycles/app/CMakeLists.txt
+++ b/intern/cycles/app/CMakeLists.txt
@@ -51,14 +51,16 @@ endif()
# Common configuration.
-link_directories(${OPENIMAGEIO_LIBPATH}
- ${BOOST_LIBPATH}
- ${PNG_LIBPATH}
- ${JPEG_LIBPATH}
- ${ZLIB_LIBPATH}
- ${TIFF_LIBPATH}
- ${OPENEXR_LIBPATH}
- ${OPENJPEG_LIBPATH})
+link_directories(
+ ${OPENIMAGEIO_LIBPATH}
+ ${BOOST_LIBPATH}
+ ${PNG_LIBPATH}
+ ${JPEG_LIBPATH}
+ ${ZLIB_LIBPATH}
+ ${TIFF_LIBPATH}
+ ${OPENEXR_LIBPATH}
+ ${OPENJPEG_LIBPATH}
+)
if(WITH_OPENCOLORIO)
link_directories(${OPENCOLORIO_LIBPATH})
diff --git a/intern/cycles/test/CMakeLists.txt b/intern/cycles/test/CMakeLists.txt
index dc7e40c0039..ab7a9c75e17 100644
--- a/intern/cycles/test/CMakeLists.txt
+++ b/intern/cycles/test/CMakeLists.txt
@@ -86,14 +86,16 @@ list(APPEND ALL_CYCLES_LIBRARIES
include_directories(${INC})
-link_directories(${OPENIMAGEIO_LIBPATH}
- ${BOOST_LIBPATH}
- ${PNG_LIBPATH}
- ${JPEG_LIBPATH}
- ${ZLIB_LIBPATH}
- ${TIFF_LIBPATH}
- ${OPENEXR_LIBPATH}
- ${OPENCOLORIO_LIBPATH})
+link_directories(
+ ${OPENIMAGEIO_LIBPATH}
+ ${BOOST_LIBPATH}
+ ${PNG_LIBPATH}
+ ${JPEG_LIBPATH}
+ ${ZLIB_LIBPATH}
+ ${TIFF_LIBPATH}
+ ${OPENEXR_LIBPATH}
+ ${OPENCOLORIO_LIBPATH}
+)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${PLATFORM_LINKFLAGS}")
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} ${PLATFORM_LINKFLAGS_DEBUG}")
diff --git a/intern/quadriflow/CMakeLists.txt b/intern/quadriflow/CMakeLists.txt
index 5fe60f3eda2..457fceb2681 100644
--- a/intern/quadriflow/CMakeLists.txt
+++ b/intern/quadriflow/CMakeLists.txt
@@ -40,7 +40,7 @@ set(LIB
)
if(WIN32)
- add_definitions(-D_USE_MATH_DEFINES)
+ add_definitions(-D_USE_MATH_DEFINES)
endif()
blender_add_lib(bf_intern_quadriflow "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")