Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1527 - trunk/DynLT


Chronological Thread 
  • From: cgribble@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1527 - trunk/DynLT
  • Date: Sat, 21 Jul 2007 08:02:45 -0600 (MDT)

Author: cgribble
Date: Sat Jul 21 08:02:44 2007
New Revision: 1527

Modified:
   trunk/DynLT/CMakeLists.txt
Log:
Don't attempt to compile DynLTCGT if necessary files don't exist

Modified: trunk/DynLT/CMakeLists.txt
==============================================================================
--- trunk/DynLT/CMakeLists.txt  (original)
+++ trunk/DynLT/CMakeLists.txt  Sat Jul 21 08:02:44 2007
@@ -12,9 +12,15 @@
     DynLTStatsCollector.cc
     DynLTWorker.h
     DynLTWorker.cc
-    DynLTCGT.h
-    DynLTCGT.cc
     )
+
+IF(EXISTS ${PROJECT_SOURCE_DIR}/Model/Groups/private/)
+  SET(Manta_DynLT_SRCS
+      ${Manta_DynLT_SRCS}
+      DynLTCGT.h
+      DynLTCGT.cc
+      )
+ENDIF(EXISTS ${PROJECT_SOURCE_DIR}/Model/Groups/private/)
 
 INCLUDE_DIRECTORIES(${FOUND_TEEM_INCLUDE})
 




  • [MANTA] r1527 - trunk/DynLT, cgribble, 07/21/2007

Archive powered by MHonArc 2.6.16.

Top of page