Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r653 - branches/itanium2/fox


Chronological Thread 
  • From: abe@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r653 - branches/itanium2/fox
  • Date: Mon, 24 Oct 2005 12:35:01 -0600 (MDT)

Author: abe
Date: Mon Oct 24 12:35:01 2005
New Revision: 653

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

Added conditional so that MediaFusion interface does not try to build on 
non-SGI_LINUX platforms.

M    fox/CMakeLists.txt


Modified: branches/itanium2/fox/CMakeLists.txt
==============================================================================
--- branches/itanium2/fox/CMakeLists.txt        (original)
+++ branches/itanium2/fox/CMakeLists.txt        Mon Oct 24 12:35:01 2005
@@ -42,11 +42,15 @@
     FMantaTransparent.cc
     FMantaKdExplorer.h
     FMantaKdExplorer.cc
+    )
+IF (SGI_LINUX)
+  SET(FMANTA_STATIX ${FMANTA_STATIC}
     MediaFusionBridge.h
     MediaFusionBridge.cc
     MediaFusionApp.h
     MediaFusionApp.cc
     )
+ENDIF(SGI_LINUX)
 
   # Determine other libraries to link with
   SET(FOX_X11_LIBRARIES m jpeg png tiff)
@@ -106,11 +110,13 @@
   TARGET_LINK_LIBRARIES(dm_demo
     ${OTHER_FOX_LIBS})
 
+IF(SGI_LINUX)
   ADD_EXECUTABLE(sc_demo sc_demo.cc
     ${FMANTA_STATIC})
 
   TARGET_LINK_LIBRARIES(sc_demo
     ${OTHER_FOX_LIBS})
+ENDIF(SGI_LINUX)
 
 ENDIF(FOX_PATH)
 




  • [MANTA] r653 - branches/itanium2/fox, abe, 10/24/2005

Archive powered by MHonArc 2.6.16.

Top of page