<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title> 
Notes for Creatis.fc1.gcc -- GDCM-FedoraCore1-gcc -- Thursday, December 02 2004
</title>
<style TYPE="text/css">
        .btip { text-decoration:none; onmouseout=hidetip(); }
        .normal { background-color : #00aa00; }
        .warning { background-color : #ffcc66; }
        .error { background-color : #ff6666; }
        .pass { background-color : #00aa00; }
        .fail { background-color : #ffcc66; }
        .nr { background-color : #ff6666; }
        .na { background-color : #cccccc; }
        .tr-even { background-color : #b0c4de; }
        .tr-odd { background-color : #ffffff; }
        .measurement { background-color : #b0c4de; }
        .table-heading { background-color : #b0c4de; }

#navigator {
           // background-color: #6699cc;
background-color: #ffffff;
border: 0px #0000aa solid;
width: auto;
}

.smalldarthoverbutton {
font-weight: bold;
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
font-size: 16;
}

.smalldarthoverbutton a {
padding: 0px;
text-decoration: none;
width: 100%;
display: block;
color: #000000;
background-color: #b5c9e2;
border-top: 2px #cce3ff solid;
border-left: 2px #cce3ff solid;
border-bottom: 2px #31557f solid;
border-right: 2px #31557f solid;
font-size: 16;
}

.smalldarthoverbutton a:hover {
background-color: #cccc00;
border-top: 2px #31557f solid;
border-left: 2px #31557f solid;
border-bottom: 2px #cccccc solid;
border-right: 2px #cccccc solid;
}

.darthoverbutton {
font-weight: bold;
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
           width: 5em;
font-size: 16;
}

.darthoverbutton a {
padding: 0px;
text-decoration: none;
width: 100%;
display: block;
color: #000000;
background-color: #b5c9e2;
border-top: 2px #cce3ff solid;
border-left: 2px #cce3ff solid;
border-bottom: 2px #31557f solid;
border-right: 2px #31557f solid;
font-size: 16;
}

.darthoverbutton a:hover {
background-color: #cccc00;
border-top: 2px #31557f solid;
border-left: 2px #31557f solid;
border-bottom: 2px #cccccc solid;
border-right: 2px #cccccc solid;
}

.hoverbutton {
font-weight: bold;
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
           width: 4em;
font-size: 16;
}

.hoverbutton a {
padding: 0px;
text-decoration: none;
width: 100%;
display: block;
color: #000000;
background-color: #bbbbbb;
border-top: 2px #cccccc solid;
border-left: 2px #cccccc solid;
border-bottom: 2px #555555 solid;
border-right: 2px #555555 solid;
font-size: 16;
}

.hoverbutton a:hover {
background-color: #cccc00;
border-top: 2px #555555 solid;
border-left: 2px #555555 solid;
border-bottom: 2px #cccccc solid;
border-right: 2px #cccccc solid;
}

        Body  {
          font-family : arial, helvetica, sans-serif;
font-size: 11;
          color : black;
}

Table  {
          font-family : arial, helvetica, sans-serif;
font-size: 11;
          color : black;
}

Table, TD  {
font-family : arial, helvetica, sans-serif;
font-size: 11;
color : black; 
background-repeat : no-repeat;
}

Table, TH  {
font-family : arial, helvetica, sans-serif;
font-size: 11;
color : black; 
background-repeat : no-repeat;
}

P {
font-family : arial, helvetica, sans-serif; color: black; 
font-size: 11;
}

a {
          Font-Family : arial, helvetica, sans-serif;
font-size: 11;
          Font-Style : normal;
          color : blue;
}

a:hover  {
         color : black;
Font-Style : bold;
}
</style>
</head>
<body bgcolor="#ffffff"><STYLE TYPE="text/css">
<!--
.HeaderText {
        color: #291F40;
        font-size: 11;
        font-family: arial, helvetica, sans-serif;
}
.HeaderTextSmall {
        color: #291F40;
        font-size: 10;
        font-family: arial, helvetica, sans-serif;
}
A.HeaderText {
        color: #0066CC;
        text-decoration: none;
}
A.HeaderTextSmall {
        color: #0066CC;
        text-decoration: none;
        font-size: 10;
}
INPUT.HeaderTextForm {
        font-size: 11;
        color: #0066CC;
        background: #E5E5F0;
        font-family: arial, helvetica, sans-serif;
}
body {
        background: url(http://public.kitware.com/images/KitwareBG.gif) #FFFFFF fixed no-repeat 96% 96%;
}
-->
</STYLE>

<SCRIPT LANGUAGE="JavaScript">
<!--
function SetCookie (name, value) {
         var argv = SetCookie.arguments;
         var argc = SetCookie.arguments.length;
         var expires = (argc > 2) ? argv[2] : null;
         var path = (argc > 3) ? argv[3] : null;
         var domain = (argc > 4) ? argv[4] : null;
         var secure = (argc > 5) ? argv[5] : false;
         document.cookie = name + "=" + escape (value) +
         ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
         ((path == null) ? "" : ("; path=" + path)) +
         ((domain == null) ? "" : ("; domain=" + domain)) +
         ((secure == true) ? "; secure" : "");
}
function getCookieVal(offset) {
   var endstr = document.cookie.indexOf (";", offset);
   if (endstr == -1) endstr = document.cookie.length;
   return unescape (document.cookie.substring(offset, endstr));
}
function GetCookie(name) {
   var arg = name+"=";
   var alen = arg.length;
   var clen = document.cookie.length;
   var i = 0;
   while (i < clen) {
      var j = i + alen;
      if (document.cookie.substring(i, j) == arg) return getCookieVal(j);
      i = document.cookie.indexOf(" ", i) + 1;
      if (i == 0) break;
   }
   return null;
}
// -->
</script>


<body TOPMARGIN="0" LEFTMARGIN="0"
        MARGINWIDTH="0" MARGINHEIGHT="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#DDDDE8" style="border-top: 2px #EEEEe8 solid; border-bottom: 2px #EEEEe8 solid">
<form name="HeaderSearchForm" method="post" action="http://www.kitware.com/cgi-bin/htsearch"><tr>
<td> 
<font class="HeaderText"><b><a href="http://www.kitware.com?TL" class="HeaderText">Kitware Inc</a></b> - <i>Leaders in Visualization Technology</i></font>
</td>
<td align="right">
<font size="-1" class="HeaderText">
<input type="text" size="12" name="words" value="" class="HeaderTextForm">
<input type="hidden" name="method" value="All">
<input type="hidden" name="format" value="Long">
<input type="hidden" name="sort" value="Score">
<input type="hidden" name="config" value="htdig_vtk">
<input type="hidden" name="restrict" value="">
<input type="hidden" name="exclude" value="">
<script language="JavaScript" type="text/javascript">
<!--
document.write("<b><a class=\"HeaderText\" href=\"javascript:document.HeaderSearchForm.submit()\">Search</a></b>");
//-->
</script>
<noscript>
<input type="submit" value="Search" class="HeaderTextForm">
</noscript>
</font>
 </td>
</tr>
</form>
</table>

</body>


<table border="0" cellpadding="0" cellspacing="2" width="100%">
<tr>
<td align="center"><a href="../../../../Dashboard/20041202-0100-Nightly/Dashboard.html"><img alt="Logo/Homepage link" src="../../../../Icons/Logo.gif" border="0"></a>
</td>
<td bgcolor="#6699cc" valign="top" width="100%">
<font color="#ffffff"><h2>Notes for Creatis.fc1.gcc -- GDCM-FedoraCore1-gcc</h2><h3>Thursday, December 02 2004</h3></font>
</td></tr><tr><td></td><td>
<div id="navigator">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
             <td align="center">
<p class="darthoverbutton">
<a href="../../../../Dashboard/20041202-0100-Nightly/Dashboard.html"> Dartboard </a>
</p>
</td>

          <td align="center">
<p class="smalldarthoverbutton">
               <a href="../../../../Dashboard/20041202-0100-Nightly/../MostRecentResults-Nightly/Dashboard.html">T</a>
            </p>
          </td>
        
</td>

<td align="center">
<p class="darthoverbutton">
<a href="../../../../Dashboard/20041202-0100-Nightly/Update.html">Updates</a>
</p>
</td>
<td align="center">
<p class="darthoverbutton">
<a href="../../../../Dashboard/20041202-0100-Nightly/TestOverviewByCount.html">Tests</a>
</p>
</td>
<td align="center">
<p class="darthoverbutton">
<a href="../../../../Dashboard/20041202-0100-Nightly/BuildOverview.html">Build</a>
</p>
</td>

                <td align="center">
<p class="hoverbutton">
<a href="http://public.kitware.com/Bug/index.php">Bugs</a>
</p>
</td>

                <td align="center">
<p class="hoverbutton">
<a href="http://public.kitware.com">Home</a>
</p>
</td>

                <td align="center">
<p class="hoverbutton">
<a href="http://public.kitware.com/cgi-bin/Public-rollup-dashboard.sh"> Rollup </a>
</p>
</td>

</tr>
</table>
</div>
</td>
</tr>
</table>
<br>
<h3 xmlns:lxslt="http://xml.apache.org/xslt" style="background: #b0c4de">Notes for GDCM-FedoraCore1-gcc -- 20041202-0100-Nightly</h3>
<p xmlns:lxslt="http://xml.apache.org/xslt"><img SRC="../../../../Icons/Alert.gif" ALT="Notes" border="0" ALIGN="texttop">   <b>Thu Dec 02 00:13:49 CET 2004</b><b> -- /home/regrain/Dashboard/gdcm/Dashboard/dash_gdcm_gcc.cmake</b><br><pre>
# please see common.cmake for more documentation
###################################################################
# The values in this section must always be provided
###################################################################

# if you do not want to use the default location for a
# dashboard then set this variable to the directory
# the dashboard should be in
SET (CTEST_DASHBOARD_ROOT "/home/regrain/Dashboard/gdcm")

# this is the cvs module name that should be checked out
SET (CTEST_MODULE_NAME GDCM)

# these are the the name of the source and binary directory on disk. 
# They will be appended to DASHBOARD_ROOT
SET (CTEST_SOURCE_NAME gdcm)
SET (CTEST_BINARY_NAME gdcm-gcc)

SET (CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_SOURCE_NAME}")
SET (CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_BINARY_NAME}")

# which ctest command to use for running the dashboard
SET (CTEST_COMMAND 
  "ctest -D Nightly -A ${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}"
  "ctest -T memcheck -T submit -M Nightly"
  )

# what cmake command to use for configuring this dashboard
SET (CTEST_CMAKE_COMMAND
  "cmake"
  )


####################################################################
# The values in this section are optional you can either
# have them or leave them commented out
####################################################################

# should ctest wipe the binary tree before running
SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)

# this is the initial cache to use for the binary tree, be careful to escape
# any quotes inside of this string if you use it
SET (CTEST_INITIAL_CACHE "

//Command used to build entire project from the command line.
MAKECOMMAND:STRING=make -i -j2

CMAKE_CXX_FLAGS:STRING=-g -O0 -Wall -W -Wshadow -Wunused-variable -Wunused-parameter -Wunused-function -Wunused -Wno-system-headers -Wno-deprecated -Woverloaded-virtual -fprofile-arcs -ftest-coverage
CMAKE_C_FLAGS:STRING=-g -O0 -Wall -W -fprofile-arcs -ftest-coverage

GDCM_DATA_ROOT:PATH=/home/regrain/Dashboard/gdcm/gdcmData

//Path to a program.
CVSCOMMAND:FILEPATH=cvs

//Name of the build
BUILDNAME:STRING=GDCM-FedoraCore1-gcc

//Name of the computer/site where compile is being run
SITE:STRING=Creatis.fc1.gcc

BUILD_EXAMPLES:BOOL=1
BUILD_SHARED_LIBS:BOOL=1
GDCM_VTK:BOOL=1
VTK_DIR:STRING=/usr/lib/vtk

GDCM_DATA_ROOT:PATH=/home/regrain/Dashboard/gdcm/gdcmData

CVS_UPDATE_OPTIONS:STRING=-d -P -A
")

# set any extra envionment varibles here
SET (CTEST_ENVIRONMENT
  "GDCM_DICT_PATH=${CTEST_SOURCE_DIRECTORY}/Dicts"
)

# what cvs command to use for configuring this dashboard
SET (CTEST_CVS_COMMAND "cvs")

# set any extra directories to do an update on
SET (CTEST_EXTRA_UPDATES_1 "${CTEST_DASHBOARD_ROOT}/gdcmData" "-dAP")
SET (CTEST_EXTRA_UPDATES_2 "${CTEST_DASHBOARD_ROOT}/gdcm" "-dAP")

</pre></p>
        <br/>
<a href="http://public.kitware.com/Dart/"><img alt="Dart Home" src="../../../../Icons/poweredbydart.gif" border="0"></a>
</body>
</html>