summaryrefslogtreecommitdiff
path: root/src/lua/cmake/CustomMacros.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/cmake/CustomMacros.cmake')
-rw-r--r--src/lua/cmake/CustomMacros.cmake14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lua/cmake/CustomMacros.cmake b/src/lua/cmake/CustomMacros.cmake
deleted file mode 100644
index 9318ea4eb..000000000
--- a/src/lua/cmake/CustomMacros.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-
-macro(add_target_properties _target _name)
- set(_properties)
- foreach(_prop ${ARGN})
- set(_properties "${_properties} ${_prop}")
- endforeach(_prop)
- get_target_property(_old_properties ${_target} ${_name})
- if(NOT _old_properties)
- # in case it's NOTFOUND
- set(_old_properties)
- endif(NOT _old_properties)
- set_target_properties(${_target} PROPERTIES ${_name} "${_old_properties} ${_properties}")
-endmacro(add_target_properties)
-