Browse Source
Upstream version 0.1.1 # gpg: Signature made Thu 03 Oct 2013 01:57:55 PM CEST using RSA key ID 1E95BAD7 # gpg: Good signature from "Stefan Bühler <stefan@stbuehler.de>" # gpg: aka "Stefan Bühler <stbuehler@web.de>" # gpg: aka "Stefan Bühler <stbuehler@freenet.de>" # gpg: aka "Stefan Bühler <lighttpd@stbuehler.de>" # gpg: aka "Stefan Bühler <stbuehler@lighttpd.net>"master

6 changed files with 27 additions and 14 deletions
@ -0,0 +1,13 @@
|
||||
MACRO(ADD_TARGET_PROPERTIES _target _name) |
||||
SET(_properties) |
||||
FOREACH(_prop ${ARGN}) |
||||
SET(_properties "${_properties} ${_prop}") |
||||
ENDFOREACH(_prop) |
||||
GET_TARGET_PROPERTY(_old_properties ${_target} ${_name}) |
||||
MESSAGE(STATUS "adding property to ${_target} ${_name}:" ${_properties}) |
||||
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) |
Loading…
Reference in new issue