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:
Diffstat (limited to 'build_files/cmake/macros.cmake')
-rw-r--r--build_files/cmake/macros.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index e21d9491354..2b044e4df1f 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -14,7 +14,7 @@ macro(blender_include_dirs
endmacro()
# only MSVC uses SOURCE_GROUP
-macro(blenderlib_nolist
+macro(blender_add_lib_nolist
name
sources
includes)
@@ -37,7 +37,7 @@ macro(blenderlib_nolist
endmacro()
# # works fine but having the includes listed is helpful for IDE's (QtCreator/MSVC)
-# macro(blenderlib_nolist
+# macro(blender_add_lib_nolist
# name
# sources
# includes)
@@ -47,12 +47,12 @@ endmacro()
# add_library(${name} ${sources})
# endmacro()
-macro(blenderlib
+macro(blender_add_lib
name
sources
includes)
- blenderlib_nolist(${name} "${sources}" "${includes}")
+ blender_add_lib_nolist(${name} "${sources}" "${includes}")
set_property(GLOBAL APPEND PROPERTY BLENDER_LINK_LIBS ${name})