Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r479 - branches/itanium2/fox


Chronological Thread 
  • From: abe@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r479 - branches/itanium2/fox
  • Date: Thu, 18 Aug 2005 17:14:13 -0600 (MDT)

Author: abe
Date: Thu Aug 18 17:14:10 2005
New Revision: 479

Modified:
   branches/itanium2/fox/CMakeLists.txt
Log:

Fixed FIND_LIBRARY directive in CMakeLists.txt file. 

Please re-run ccmake and make sure FOUND_XRANDR and FOUND_XCURSOR are being 
set correctly for your system.

M    CMakeLists.txt


Modified: branches/itanium2/fox/CMakeLists.txt
==============================================================================
--- branches/itanium2/fox/CMakeLists.txt        (original)
+++ branches/itanium2/fox/CMakeLists.txt        Thu Aug 18 17:14:10 2005
@@ -50,7 +50,7 @@
   SET(FOX_X11_LIBRARIES m)
 
   # Append Xcursor if it is available.
-  FIND_LIBRARY( FOUND_XCURSOR NAME Xcursor PATH /usr/X11R6/lib )    
+  FIND_LIBRARY( FOUND_XCURSOR NAMES Xcursor PATHS /usr/X11R6/lib )    
   IF(FOUND_XCURSOR)
     SET(FOX_X11_LIBRARIES ${FOX_X11_LIBRARIES}
                           Xcursor)
@@ -58,7 +58,7 @@
 
  
   # Append Xrandr if it is available.
-  FIND_LIBRARY( FOUND_XCURSOR NAME Xrandr PATH /usr/X11R6/lib )    
+  FIND_LIBRARY( FOUND_XRANDR NAMES Xrandr PATHS /usr/X11R6/lib )    
   IF(FOUND_XRANDR)
     SET(FOX_X11_LIBRARIES ${FOX_X11_LIBRARIES}
                           Xrandr)




  • [MANTA] r479 - branches/itanium2/fox, abe, 08/18/2005

Archive powered by MHonArc 2.6.16.

Top of page