Changeset 18806

Show
Ignore:
Timestamp:
05/08/06 17:50:25 (3 years ago)
Author:
patrick
Message:

Added a Visual Studio 2005 build for Juggler. This is needed for targeting
64-bit Windows. I have not been able to find a forward compatible
apparoach for setting up 64-bit Windows builds using Visual Studio 2002,
so this seems like our best option.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/buildwin32.py

    r18801 r18806  
    7171      self.isDirectory = isDirectory 
    7272 
    73 def guessBoostToolset(reattempt = False): 
     73def detectVisualStudioVersion(reattempt = False): 
    7474   (cl_stdin, cl_stdout, cl_stderr) = os.popen3('cl') 
    7575   cl_version_line = cl_stderr.readline() 
     
    7777   cl_ver_match = re.compile(r'Compiler Version ((\d+)\.(\d+)\.(\d+))') 
    7878   ver_string_match = cl_ver_match.search(cl_version_line) 
     79 
     80   cl_major = 0 
     81   cl_minor = 0 
    7982 
    8083   if ver_string_match is not None: 
     
    8487      if cl_major == 13 and cl_minor < 10: 
    8588         vs_ver = '.NET 2002' 
    86          boost_tool_guess = 'vc7' 
    8789      elif cl_major == 13 and cl_minor >= 10: 
    8890         vs_ver = '.NET 2003' 
    89          boost_tool_guess = 'vc71' 
    9091      else: 
    9192         vs_ver = '2005' 
    92          boost_tool_guess = 'vc80' 
    9393 
    9494      printStatus("It appears that we will be using Visual Studio " + vs_ver) 
    95    else: 
    96       boost_tool_guess = '' 
    9795 
    9896   in_status  = cl_stdin.close() 
     
    139137         noVisualStudioError() 
    140138 
     139   return (cl_major, cl_minor) 
     140 
     141def chooseVisualStudioDir(): 
     142   (cl_ver_major, cl_ver_minor) = detectVisualStudioVersion() 
     143 
     144   # For Visual Studio .NET 2002 and 2003 (versions 7.0 and 7.1 respectively), 
     145   # we will use the solution in the vc7 subtree. 
     146   if cl_ver_major == 13: 
     147      vc_dir = 'vc7' 
     148   # Otherwise, we use the solution in the vc8 subtree. 
     149   else: 
     150      vc_dir = 'vc8' 
     151 
     152   return (cl_ver_major, cl_ver_minor, vc_dir) 
     153 
     154def guessBoostToolset(clVerMajor, clVerMinor): 
     155   if clVerMajor == 13 and clVerMinor < 10: 
     156      boost_tool_guess = 'vc7' 
     157   elif clVerMajor == 13 and clVerMinor >= 10: 
     158      boost_tool_guess = 'vc71' 
     159   else: 
     160      boost_tool_guess = 'vc80' 
     161 
    141162   return boost_tool_guess 
    142163 
     
    177198   return value_str 
    178199 
    179 def getDefaultVars(): 
    180    boost_tool_fallback = guessBoostToolset(
     200def getDefaultVars(clVerMajor, clVerMinor): 
     201   boost_tool_fallback = guessBoostToolset(clVerMajor, clVerMinor
    181202 
    182203   required = [] 
     
    242263   return required, optional, options 
    243264 
    244 def setVars(): 
    245    required, optional, options = getDefaultVars(
     265def setVars(clVerMajor, clVerMinor): 
     266   required, optional, options = getDefaultVars(clVerMajor, clVerMinor
    246267 
    247268   print "+++ Required Settings" 
     
    15711592      printStatus = self.printMessage 
    15721593 
    1573       required, optional, options = getDefaultVars() 
     1594      (cl_ver_major, cl_ver_minor, vc_dir) = chooseVisualStudioDir() 
     1595      required, optional, options = getDefaultVars(cl_ver_major, cl_ver_minor) 
    15741596      self.mOptions   = options 
    15751597      self.mTkOptions = {} 
    1576       self.mVcDir     = 'vc7' 
     1598      self.mVcDir     = vc_dir 
    15771599 
    15781600      # Make a StringVar dictionary. 
     
    20452067   # the text-based interface. 
    20462068   if not gHaveTk or disable_tk: 
    2047       options = setVars() 
    2048       vc_dir  = 'vc7' 
     2069      (cl_ver_major, cl_ver_minor, vc_dir) = chooseVisualStudioDir() 
     2070      options = setVars(cl_ver_major, cl_ver_minor) 
    20492071      generateVersionHeaders(vc_dir) 
    20502072      generateAntBuildFiles(vc_dir) 
  • juggler/trunk/vc8/Gadgeteer

    • Property svn:ignore changed from
      Win32
      Gadgeteer.vcproj.*
      to
      Win32
      x64
      Gadgeteer.vcproj.*
  • juggler/trunk/vc8/Gadgeteer/ApplicationDataManager

    • Property svn:ignore changed from
      Win32
      ApplicationDataManager.vcproj.*
      to
      Win32
      x64
      ApplicationDataManager.vcproj.*
  • juggler/trunk/vc8/Gadgeteer/ApplicationDataManager/ApplicationDataManager.vcproj

    r18423 r18806  
    1 <?xml version="1.0" encoding = "Windows-1252"?> 
     1<?xml version="1.0" encoding="Windows-1252"?> 
    22<VisualStudioProject 
    33        ProjectType="Visual C++" 
    4         Version="7.00" 
     4        Version="8.00" 
    55        Name="Cluster Plug-in - Application Data Manager" 
    66        ProjectGUID="{2BB1C6DC-A6DB-42A3-A91A-DBD8BA7A843D}" 
    7         Keyword="Win32Proj"> 
     7        Keyword="Win32Proj" 
     8        > 
    89        <Platforms> 
    910                <Platform 
    10                         Name="Win32"/> 
     11                        Name="Win32" 
     12                /> 
     13                <Platform 
     14                        Name="x64" 
     15                /> 
    1116        </Platforms> 
     17        <ToolFiles> 
     18        </ToolFiles> 
    1219        <Configurations> 
    1320                <Configuration 
     
    1623                        IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" 
    1724                        ConfigurationType="2" 
    18                         CharacterSet="2"> 
     25                        InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" 
     26                        CharacterSet="2" 
     27                        > 
     28                        <Tool 
     29                                Name="VCPreBuildEventTool" 
     30                        /> 
     31                        <Tool 
     32                                Name="VCCustomBuildTool" 
     33                        /> 
     34                        <Tool 
     35                                Name="VCXMLDataGeneratorTool" 
     36                        /> 
     37                        <Tool 
     38                                Name="VCWebServiceProxyGeneratorTool" 
     39                        /> 
     40                        <Tool 
     41                                Name="VCMIDLTool" 
     42                        /> 
    1943                        <Tool 
    2044                                Name="VCCLCompilerTool" 
     
    2246                                AdditionalIncludeDirectories="&quot;$(NSPR_ROOT)\include&quot;;&quot;$(BOOST_INCLUDES)&quot;;&quot;$(CPPDOM_ROOT)\include&quot;;&quot;$(GMTL_ROOT)\include&quot;;..;..\..\..\modules\vapor;..\..\VPR;..\..\..\modules\jackal\common;..\..\..\modules\jackal\config;..\..\..\modules\jackal\rtrc;..\..\JCCL;..\..\..\modules\gadgeteer" 
    2347                                PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_USRDLL;_GADGET_CLUSTER_PLUGIN_BUILD_" 
    24                                 MinimalRebuild="FALSE
     48                                MinimalRebuild="false
    2549                                BasicRuntimeChecks="3" 
    2650                                RuntimeLibrary="3" 
    27                                 BufferSecurityCheck="FALSE
    28                                 RuntimeTypeInfo="TRUE
     51                                BufferSecurityCheck="false
     52                                RuntimeTypeInfo="true
    2953                                UsePrecompiledHeader="0" 
    3054                                WarningLevel="3" 
    31                                 Detect64BitPortabilityProblems="TRUE
     55                                Detect64BitPortabilityProblems="true
    3256                                DebugInformationFormat="1" 
    33                                 DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800"/> 
    34                         <Tool 
    35                                 Name="VCCustomBuildTool"/> 
     57                                DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800" 
     58                        /> 
     59                        <Tool 
     60                                Name="VCManagedResourceCompilerTool" 
     61                        /> 
     62                        <Tool 
     63                                Name="VCResourceCompilerTool" 
     64                        /> 
     65                        <Tool 
     66                                Name="VCPreLinkEventTool" 
     67                        /> 
    3668                        <Tool 
    3769                                Name="VCLinkerTool" 
     
    4173                                LinkIncremental="1" 
    4274                                AdditionalLibraryDirectories="&quot;$(NSPR_ROOT)\lib&quot;;&quot;$(BOOST_ROOT)\lib&quot;;&quot;..\$(OutDir)&quot;;&quot;..\..\JCCL\$(OutDir)&quot;;&quot;..\..\VPR\$(OutDir)&quot;" 
    43                                 GenerateDebugInformation="TRUE
     75                                GenerateDebugInformation="true
    4476                                ProgramDatabaseFile="$(OutDir)/ApplicationDataManager_d.pdb" 
    4577                                SubSystem="1" 
    4678                                ImportLibrary="$(OutDir)/ApplicationDataManager_d.lib" 
    47                                 TargetMachine="1"/> 
    48                         <Tool 
    49                                 Name="VCMIDLTool"/> 
    50                         <Tool 
    51                                 Name="VCPostBuildEventTool"/> 
    52                         <Tool 
    53                                 Name="VCPreBuildEventTool"/> 
    54                         <Tool 
    55                                 Name="VCPreLinkEventTool"/> 
    56                         <Tool 
    57                                 Name="VCResourceCompilerTool"/> 
    58                         <Tool 
    59                                 Name="VCWebServiceProxyGeneratorTool"/> 
    60                         <Tool 
    61                                 Name="VCWebDeploymentTool"/> 
     79                                TargetMachine="1" 
     80                        /> 
     81                        <Tool 
     82                                Name="VCALinkTool" 
     83                        /> 
     84                        <Tool 
     85                                Name="VCManifestTool" 
     86                        /> 
     87                        <Tool 
     88                                Name="VCXDCMakeTool" 
     89                        /> 
     90                        <Tool 
     91                                Name="VCBscMakeTool" 
     92                        /> 
     93                        <Tool 
     94                                Name="VCFxCopTool" 
     95                        /> 
     96                        <Tool 
     97                                Name="VCAppVerifierTool" 
     98                        /> 
     99                        <Tool 
     100                                Name="VCWebDeploymentTool" 
     101                        /> 
     102                        <Tool 
     103                                Name="VCPostBuildEventTool" 
     104                        /> 
    62105                </Configuration> 
    63106                <Configuration 
     
    66109                        IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" 
    67110                        ConfigurationType="2" 
    68                         CharacterSet="2"> 
     111                        InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" 
     112                        CharacterSet="2" 
     113                        > 
     114                        <Tool 
     115                                Name="VCPreBuildEventTool" 
     116                        /> 
     117                        <Tool 
     118                                Name="VCCustomBuildTool" 
     119                        /> 
     120                        <Tool 
     121                                Name="VCXMLDataGeneratorTool" 
     122                        /> 
     123                        <Tool 
     124                                Name="VCWebServiceProxyGeneratorTool" 
     125                        /> 
     126                        <Tool 
     127                                Name="VCMIDLTool" 
     128                        /> 
    69129                        <Tool 
    70130                                Name="VCCLCompilerTool" 
    71131                                Optimization="2" 
    72132                                InlineFunctionExpansion="1" 
    73                                 OmitFramePointers="TRUE
     133                                OmitFramePointers="true
    74134                                AdditionalIncludeDirectories="&quot;$(NSPR_ROOT)\include&quot;;&quot;$(BOOST_INCLUDES)&quot;;&quot;$(CPPDOM_ROOT)\include&quot;;&quot;$(GMTL_ROOT)\include&quot;;..;..\..\..\modules\vapor;..\..\VPR;..\..\..\modules\jackal\common;..\..\..\modules\jackal\config;..\..\..\modules\jackal\rtrc;..\..\JCCL;..\..\..\modules\gadgeteer" 
    75135                                PreprocessorDefinitions="WIN32;_OPT;NDEBUG;_CONSOLE;_USRDLL;_GADGET_CLUSTER_PLUGIN_BUILD_" 
    76                                 StringPooling="TRUE
     136                                StringPooling="true
    77137                                RuntimeLibrary="2" 
    78                                 BufferSecurityCheck="FALSE
    79                                 EnableFunctionLevelLinking="TRUE
    80                                 RuntimeTypeInfo="TRUE
     138                                BufferSecurityCheck="false
     139                                EnableFunctionLevelLinking="true
     140                                RuntimeTypeInfo="true
    81141                                UsePrecompiledHeader="0" 
    82142                                WarningLevel="3" 
    83                                 Detect64BitPortabilityProblems="TRUE
     143                                Detect64BitPortabilityProblems="true
    84144                                DebugInformationFormat="3" 
    85                                 DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800"/> 
    86                         <Tool 
    87                                 Name="VCCustomBuildTool"/> 
     145                                DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800" 
     146                        /> 
     147                        <Tool 
     148                                Name="VCManagedResourceCompilerTool" 
     149                        /> 
     150                        <Tool 
     151                                Name="VCResourceCompilerTool" 
     152                        /> 
     153                        <Tool 
     154                                Name="VCPreLinkEventTool" 
     155                        /> 
    88156                        <Tool 
    89157                                Name="VCLinkerTool" 
     
    93161                                LinkIncremental="1" 
    94162                                AdditionalLibraryDirectories="&quot;$(NSPR_ROOT)\lib&quot;;&quot;$(BOOST_ROOT)\lib&quot;;&quot;..\$(OutDir)&quot;;&quot;..\..\JCCL\$(OutDir)&quot;;&quot;..\..\VPR\$(OutDir)&quot;" 
    95                                 GenerateDebugInformation="TRUE
     163                                GenerateDebugInformation="true
    96164                                ProgramDatabaseFile="$(OutDir)/ApplicationDataManager.pdb" 
    97165                                SubSystem="1" 
     
    99167                                EnableCOMDATFolding="2" 
    100168                                ImportLibrary="$(OutDir)/ApplicationDataManager.lib" 
    101                                 TargetMachine="1"/> 
    102                         <Tool 
    103                                 Name="VCMIDLTool"/> 
    104                         <Tool 
    105                                 Name="VCPostBuildEventTool"/> 
    106                         <Tool 
    107                                 Name="VCPreBuildEventTool"/> 
    108                         <Tool 
    109                                 Name="VCPreLinkEventTool"/> 
    110                         <Tool 
    111                                 Name="VCResourceCompilerTool"/> 
    112                         <Tool 
    113                                 Name="VCWebServiceProxyGeneratorTool"/> 
    114                         <Tool 
    115                                 Name="VCWebDeploymentTool"/> 
     169                                TargetMachine="1" 
     170                        /> 
     171                        <Tool 
     172                                Name="VCALinkTool" 
     173                        /> 
     174                        <Tool 
     175                                Name="VCManifestTool" 
     176                        /> 
     177                        <Tool 
     178                                Name="VCXDCMakeTool" 
     179                        /> 
     180                        <Tool 
     181                                Name="VCBscMakeTool" 
     182                        /> 
     183                        <Tool 
     184                                Name="VCFxCopTool" 
     185                        /> 
     186                        <Tool 
     187                                Name="VCAppVerifierTool" 
     188                        /> 
     189                        <Tool 
     190                                Name="VCWebDeploymentTool" 
     191                        /> 
     192                        <Tool 
     193                                Name="VCPostBuildEventTool" 
     194                        /> 
     195                </Configuration> 
     196                <Configuration 
     197                        Name="DebugDLL|x64" 
     198                        OutputDirectory="$(PlatformName)\$(ConfigurationName)" 
     199                        IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" 
     200                        ConfigurationType="2" 
     201                        InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" 
     202                        CharacterSet="2" 
     203                        > 
     204                        <Tool 
     205                                Name="VCPreBuildEventTool" 
     206                        /> 
     207                        <Tool 
     208                                Name="VCCustomBuildTool" 
     209                        /> 
     210                        <Tool 
     211                                Name="VCXMLDataGeneratorTool" 
     212                        /> 
     213                        <Tool 
     214                                Name="VCWebServiceProxyGeneratorTool" 
     215                        /> 
     216                        <Tool 
     217                                Name="VCMIDLTool" 
     218                                TargetEnvironment="3" 
     219                        /> 
     220                        <Tool 
     221                                Name="VCCLCompilerTool" 
     222                                Optimization="0" 
     223                                AdditionalIncludeDirectories="&quot;$(NSPR_ROOT)\include&quot;;&quot;$(BOOST_INCLUDES)&quot;;&quot;$(CPPDOM_ROOT)\include&quot;;&quot;$(GMTL_ROOT)\include&quot;;..;..\..\..\modules\vapor;..\..\VPR;..\..\..\modules\jackal\common;..\..\..\modules\jackal\config;..\..\..\modules\jackal\rtrc;..\..\JCCL;..\..\..\modules\gadgeteer" 
     224                                PreprocessorDefinitions="WIN64;_DEBUG;_CONSOLE;_USRDLL;_GADGET_CLUSTER_PLUGIN_BUILD_" 
     225                                MinimalRebuild="false" 
     226                                BasicRuntimeChecks="3" 
     227                                RuntimeLibrary="3" 
     228                                BufferSecurityCheck="false" 
     229                                RuntimeTypeInfo="true" 
     230                                UsePrecompiledHeader="0" 
     231                                WarningLevel="3" 
     232                                Detect64BitPortabilityProblems="true" 
     233                                DebugInformationFormat="1" 
     234                                DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800" 
     235                        /> 
     236                        <Tool 
     237                                Name="VCManagedResourceCompilerTool" 
     238                        /> 
     239                        <Tool 
     240                                Name="VCResourceCompilerTool" 
     241                        /> 
     242                        <Tool 
     243                                Name="VCPreLinkEventTool" 
     244                        /> 
     245                        <Tool 
     246                                Name="VCLinkerTool" 
     247                                AdditionalDependencies="gadget_d.lib jccl_d.lib vpr_d.lib libnspr4.lib libplc4.lib $(NOINHERIT)" 
     248                                OutputFile="$(OutDir)/ApplicationDataManager_d.dll" 
     249                                Version="1.1.1" 
     250                                LinkIncremental="1" 
     251                                AdditionalLibraryDirectories="&quot;$(NSPR_ROOT)\lib&quot;;&quot;$(BOOST_ROOT)\lib&quot;;&quot;..\$(OutDir)&quot;;&quot;..\..\JCCL\$(OutDir)&quot;;&quot;..\..\VPR\$(OutDir)&quot;" 
     252                                GenerateDebugInformation="true" 
     253                                ProgramDatabaseFile="$(OutDir)/ApplicationDataManager_d.pdb" 
     254                                SubSystem="1" 
     255                                ImportLibrary="$(OutDir)/ApplicationDataManager_d.lib" 
     256                                TargetMachine="17" 
     257                        /> 
     258                        <Tool 
     259                                Name="VCALinkTool" 
     260                        /> 
     261                        <Tool 
     262                                Name="VCManifestTool" 
     263                        /> 
     264                        <Tool 
     265                                Name="VCXDCMakeTool" 
     266                        /> 
     267                        <Tool 
     268                                Name="VCBscMakeTool" 
     269                        /> 
     270                        <Tool 
     271                                Name="VCFxCopTool" 
     272                        /> 
     273                        <Tool 
     274                                Name="VCAppVerifierTool" 
     275                        /> 
     276                        <Tool 
     277                                Name="VCWebDeploymentTool" 
     278                        /> 
     279                        <Tool 
     280                                Name="VCPostBuildEventTool" 
     281                        /> 
     282                </Configuration> 
     283                <Configuration 
     284                        Name="ReleaseDLL|x64" 
     285                        OutputDirectory="$(PlatformName)\$(ConfigurationName)" 
     286                        IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" 
     287                        ConfigurationType="2" 
     288                        InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" 
     289                        CharacterSet="2" 
     290                        > 
     291                        <Tool 
     292                                Name="VCPreBuildEventTool" 
     293                        /> 
     294                        <Tool 
     295                                Name="VCCustomBuildTool" 
     296                        /> 
     297                        <Tool 
     298                                Name="VCXMLDataGeneratorTool" 
     299                        /> 
     300                        <Tool 
     301                                Name="VCWebServiceProxyGeneratorTool" 
     302                        /> 
     303                        <Tool 
     304                                Name="VCMIDLTool" 
     305                                TargetEnvironment="3" 
     306                        /> 
     307                        <Tool 
     308                                Name="VCCLCompilerTool" 
     309                                Optimization="2" 
     310                                InlineFunctionExpansion="1" 
     311                                OmitFramePointers="true" 
     312                                AdditionalIncludeDirectories="&quot;$(NSPR_ROOT)\include&quot;;&quot;$(BOOST_INCLUDES)&quot;;&quot;$(CPPDOM_ROOT)\include&quot;;&quot;$(GMTL_ROOT)\include&quot;;..;..\..\..\modules\vapor;..\..\VPR;..\..\..\modules\jackal\common;..\..\..\modules\jackal\config;..\..\..\modules\jackal\rtrc;..\..\JCCL;..\..\..\modules\gadgeteer" 
     313                                PreprocessorDefinitions="WIN64;_OPT;NDEBUG;_CONSOLE;_USRDLL;_GADGET_CLUSTER_PLUGIN_BUILD_" 
     314                                StringPooling="true" 
     315                                RuntimeLibrary="2" 
     316                                BufferSecurityCheck="false" 
     317                                EnableFunctionLevelLinking="true" 
     318                                RuntimeTypeInfo="true" 
     319                                UsePrecompiledHeader="0" 
     320                                WarningLevel="3" 
     321                                Detect64BitPortabilityProblems="true" 
     322                                DebugInformationFormat="3" 
     323                                DisableSpecificWarnings="4244;4251;4267;4275;4290;4312;4800" 
     324                        /> 
     325                        <Tool 
     326                                Name="VCManagedResourceCompilerTool" 
     327                        /> 
     328                        <Tool 
     329                                Name="VCResourceCompilerTool" 
     330                        /> 
     331                        <Tool 
     332                                Name="VCPreLinkEventTool" 
     333                        /> 
     334                        <Tool 
     335                                Name="VCLinkerTool" 
     336                                AdditionalDependencies="gadget.lib jccl.lib vpr.lib libnspr4.lib libplc4.lib $(NOINHERIT)" 
     337                                OutputFile="$(OutDir)/ApplicationDataManager.dll" 
     338                                Version="1.1.1" 
     339                                LinkIncremental="1" 
     340                                AdditionalLibraryDirectories="&quot;$(NSPR_ROOT)\lib&quot;;&quot;$(BOOST_ROOT)\lib&quot;;&quot;..\$(OutDir)&quot;;&quot;..\..\JCCL\$(OutDir)&quot;;&quot;..\..\VPR\$(OutDir)&quot;" 
     341                                GenerateDebugInformation="true" 
     342                                ProgramDatabaseFile="$(OutDir)/ApplicationDataManager.pdb" 
     343                                SubSystem="1" 
     344                                OptimizeReferences="2" 
     345                                EnableCOMDATFolding="2" 
     346                                ImportLibrary="$(OutDir)/ApplicationDataManager.lib" 
     347                                TargetMachine="17" 
     348                        /> 
     349                        <Tool 
     350                                Name="VCALinkTool" 
     351                        /> 
     352                        <Tool 
     353                                Name="VCManifestTool" 
     354                        /> 
     355                        <Tool 
     356                                Name="VCXDCMakeTool" 
     357                        /> 
     358                        <Tool 
     359                                Name="VCBscMakeTool" 
     360                        /> 
     361                        <Tool 
     362                                Name="VCFxCopTool" 
     363                        /> 
     364                        <Tool 
     365                                Name="VCAppVerifierTool" 
     366                        /> 
     367                        <Tool 
     368                                Name="VCWebDeploymentTool" 
     369                        /> 
     370                        <Tool 
     371                                Name="VCPostBuildEventTool" 
     372                        /> 
    116373                </Configuration> 
    117374        </Configurations> 
     375        <References> 
     376        </References> 
    118377        <Files> 
    119378                <Filter 
    120379                        Name="Source Files" 
    121                         Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> 
    122                         <File 
    123                                 RelativePath="..\..\..\modules\gadgeteer\plugins\ApplicationDataManager\ApplicationDataManager.cpp"> 
    124&nb