Line | |
---|
1 | # MACRO_BOOL_TO_01( VAR RESULT0 ... RESULTN )
|
---|
2 | # This macro evaluates its first argument
|
---|
3 | # and sets all the given vaiables either to 0 or 1
|
---|
4 | # depending on the value of the first one
|
---|
5 |
|
---|
6 | # Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
|
---|
7 | #
|
---|
8 | # Redistribution and use is allowed according to the terms of the BSD license.
|
---|
9 | # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
---|
10 |
|
---|
11 |
|
---|
12 | MACRO(MACRO_BOOL_TO_01 FOUND_VAR )
|
---|
13 | FOREACH (_current_VAR ${ARGN})
|
---|
14 | IF(${FOUND_VAR})
|
---|
15 | SET(${_current_VAR} 1)
|
---|
16 | ELSE(${FOUND_VAR})
|
---|
17 | SET(${_current_VAR} 0)
|
---|
18 | ENDIF(${FOUND_VAR})
|
---|
19 | ENDFOREACH(_current_VAR)
|
---|
20 | ENDMACRO(MACRO_BOOL_TO_01)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.