Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r1913 - trunk/CMake


Chronological Thread 
  • From: boulos@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r1913 - trunk/CMake
  • Date: Fri, 7 Dec 2007 10:15:14 -0700 (MST)

Author: boulos
Date: Fri Dec  7 10:15:12 2007
New Revision: 1913

Modified:
   trunk/CMake/ConfigureAbout.cmake.CMakeTemplate
Log:
CMake/ConfigureAbout.cmake.CMakeTemplate

 Fixing quoting issue (Win32 CMake doesn't like having strings not
 within quotes, other systems just seem to concatenate them)


Modified: trunk/CMake/ConfigureAbout.cmake.CMakeTemplate
==============================================================================
--- trunk/CMake/ConfigureAbout.cmake.CMakeTemplate      (original)
+++ trunk/CMake/ConfigureAbout.cmake.CMakeTemplate      Fri Dec  7 10:15:12 
2007
@@ -9,7 +9,7 @@
   DOC "subversion command line client")
 
 IF(Subversion_SVN_EXECUTABLE)
-  MESSAGE( STATUS "Executing: svn info " @CMAKE_SOURCE_DIR@ )
+  MESSAGE( STATUS "Executing: svn info @CMAKE_SOURCE_DIR@" )
   EXEC_PROGRAM(${Subversion_SVN_EXECUTABLE} ARGS info @CMAKE_SOURCE_DIR@
     OUTPUT_VARIABLE SVN_OUTPUT )
 
@@ -19,8 +19,8 @@
   # Set the about string.
   SET(ABOUT_STRING ${SVN_OUTPUT} 
     "\\n\\n"
-    "Build Type: " @CMAKE_BUILD_TYPE@ "\\n"
-    "Compiler:   " @CMAKE_CXX_COMPILER@ "\\n"
+    "Build Type: @CMAKE_BUILD_TYPE@ \\n"
+    "Compiler:   @CMAKE_CXX_COMPILER@ \\n"
     )
 ELSE(Subversion_SVN_EXECUTABLE)
   SET(ABOUT_STRING "svn command not found: svn info unavailable\\\n")
@@ -29,7 +29,7 @@
 SET(CMAKE_BACKWARDS_COMPATIBILITY 2.4)
 
 # Configure the source file.
-MESSAGE( STATUS "Configuring " @ABOUT_SRC@ )
+MESSAGE( STATUS "Configuring @ABOUT_SRC@" )
 CONFIGURE_FILE(
   @Manta_SOURCE_DIR@/include/About.cc.CMakeTemplate
   @ABOUT_SRC@




  • [Manta] r1913 - trunk/CMake, boulos, 12/07/2007

Archive powered by MHonArc 2.6.16.

Top of page