Guest User

Untitled

a guest
Sep 21st, 2011
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.53 KB | None | 0 0
  1.   <condition property="lib.dir" value="${lib.dir.gtk}" else="${lib.dir.win}">
  2.     <or>
  3.       <and>
  4.         <isset property="${build.os}" />
  5.         <equals arg1="${build.os}" arg2="gtk" />
  6.       </and>
  7.       <and>
  8.         <not><isset property="${build.os}" /></not>
  9.         <os name="Linux" />
  10.       </and>
  11.     </or>
  12.   </condition>
  13.  
  14.  
  15. <!--
  16.  if ( ( isset($build.os) && $build.os == 'gtk' ) || ( !isset($build.os) && $os.name == 'Linux' ) )
  17.  {
  18.    $lib.dir = $lib.dir.gtk;
  19.  }
  20.  else
  21.  {
  22.    $lib.dir = $lib.dir.win;
  23.  }
  24. -->
Advertisement
Add Comment
Please, Sign In to add comment