This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "roboptim-core-plugin-ipopt".

The branch, master has been updated
       via  9781013753b520a4917f6d12ce6aaea75f840afc (commit)
       via  f7d40d17322b35fb047aeb794fa25da40a37004e (commit)
       via  a0dda13bda60c87fc344195c41366c9a98d6aeb4 (commit)
       via  428462a9bb51886e07e306a3d57cf5d16024b56a (commit)
      from  1ad8ad98472632730398108b93a1d27e84ea47fc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9781013753b520a4917f6d12ce6aaea75f840afc
Author: Francois Keith <francois.ke...@aist.go.jp>
Date:   Mon Apr 12 23:38:40 2010 +0900

    Win32: Patches the sources so as to avoid the linkage issue (undefined 
elemt)
    
        This appends when compiling with the pre-compiled Ipopt library (v3.8.1)
        Define the classic macro WIN32 in the VS projects for preprocessing
    
        * src/roboptim-core-ipopt-plugin.cc: changed the initialization list 
for the IpoptSolver (win32 only)
        * msvc/simple/simple.vcproj: add the macro WIN32
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj,
    
    Signed-of-by: Keith Francois <francois.ke...@aist.go.jp>

diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
index 1aa9cd2..2370433 100644
--- a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
@@ -41,6 +41,7 @@
                                Name="VCCLCompilerTool"
                                Optimization="0"
                                
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\include&quot;"
+                               PreprocessorDefinitions="WIN32"
                                MinimalRebuild="true"
                                BasicRuntimeChecks="3"
                                RuntimeLibrary="3"
@@ -117,6 +118,7 @@
                        <Tool
                                Name="VCCLCompilerTool"
                                
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\include&quot;"
+                               PreprocessorDefinitions="WIN32"
                                RuntimeLibrary="2"
                                WarningLevel="3"
                                Detect64BitPortabilityProblems="true"
diff --git a/msvc/simple/simple.vcproj b/msvc/simple/simple.vcproj
index c76893f..883fbd0 100644
--- a/msvc/simple/simple.vcproj
+++ b/msvc/simple/simple.vcproj
@@ -41,6 +41,7 @@
                                Name="VCCLCompilerTool"
                                Optimization="0"
                                
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               PreprocessorDefinitions="WIN32"
                                MinimalRebuild="true"
                                BasicRuntimeChecks="3"
                                RuntimeLibrary="3"
@@ -118,6 +119,7 @@
                                Optimization="2"
                                EnableIntrinsicFunctions="true"
                                
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               PreprocessorDefinitions="WIN32"
                                RuntimeLibrary="2"
                                EnableFunctionLevelLinking="true"
                                WarningLevel="3"
diff --git a/src/roboptim-core-ipopt-plugin.cc 
b/src/roboptim-core-ipopt-plugin.cc
index b413de1..ad9bc27 100644
--- a/src/roboptim-core-ipopt-plugin.cc
+++ b/src/roboptim-core-ipopt-plugin.cc
@@ -502,8 +502,14 @@ namespace roboptim
   IpoptSolver::IpoptSolver (const problem_t& pb) throw ()
     : parent_t (pb),
       nlp_ (new MyTNLP (*this)),
+#ifndef WIN32
       app_ (new IpoptApplication (false, false))
   {
+#else
+      app_ (IpoptApplicationFactory ( ))
+  {
+       app_->Jnlst()->DeleteAllJournals();
+#endif // WIN32
     // Initialize parameters.
     initializeParameters ();
   }

commit f7d40d17322b35fb047aeb794fa25da40a37004e
Author: Francois Keith <francois.ke...@aist.go.jp>
Date:   Mon Apr 12 23:18:30 2010 +0900

    Split the property sheet in two parts
    
    The first property sheet is the "core" one.
     It contains the same info as the one installed by the roboptim core project
     The second one contains the info specific to ipopt
    
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops: 
contains now ipopt specific info
        * msvc/roboptim-core-plugin-ipopt/roboptim-core.vsprops: contains now 
core specific info
        * msvc/INSTALL/INSTALL.vcproj: install now the static and dynamic 
libraries plus ipopt property sheet
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj: 
change property sheets included
        * msvc/simple/simple.vcproj,
        * msvc/simplewithdll/simplewithdll.vcproj,
    
    Signed-of-by: Keith Francois <francois.ke...@aist.go.jp>

diff --git a/msvc/INSTALL/INSTALL.vcproj b/msvc/INSTALL/INSTALL.vcproj
index ea27c98..9bf939b 100644
--- a/msvc/INSTALL/INSTALL.vcproj
+++ b/msvc/INSTALL/INSTALL.vcproj
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="8,00"
+       Version="8.00"
        Name="INSTALL"
        ProjectGUID="{D33006C5-3F63-488A-99CB-8C08109EA5F9}"
        RootNamespace="INSTALL"
@@ -19,7 +19,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="10"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -33,7 +33,7 @@
                        />
                        <Tool
                                Name="VCPostBuildEventTool"
-                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.dll    
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.pdb 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.lib    
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;"
+                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.dll    
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.pdb 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.lib    
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops 
%root_directory%\share\msvc  /S /C /I /F /K /Y&#x0D;&#x0A;"
                        />
                </Configuration>
                <Configuration
@@ -41,7 +41,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="10"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        CharacterSet="2"
                        WholeProgramOptimization="1"
                        >
@@ -56,7 +56,7 @@
                        />
                        <Tool
                                Name="VCPostBuildEventTool"
-                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.dll 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.lib 
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;"
+                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.dll 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.lib 
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops 
%root_directory%\share\msvc  /S /C /I /F /K /Y&#x0D;&#x0A;"
                        />
                </Configuration>
        </Configurations>
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
index 773359e..1aa9cd2 100644
--- a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
@@ -19,7 +19,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="2"
-                       
InheritedPropertySheets=".\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets=".\roboptim-core.vsprops;.\roboptim-core-ipopt-plugin.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -95,7 +95,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="2"
-                       
InheritedPropertySheets=".\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets=".\roboptim-core-ipopt-plugin.vsprops;.\roboptim-core.vsprops"
                        CharacterSet="2"
                        WholeProgramOptimization="1"
                        >
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
index 1bc677f..bd4104e 100644
--- a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
@@ -7,22 +7,13 @@
        <Tool
                Name="VCCLCompilerTool"
                AdditionalOptions=" /D &quot;HAVE_CONFIG_H&quot;"
-               
AdditionalIncludeDirectories="&quot;$(ROB_OPTIM_INSTALL_DIR)\include&quot;;&quot;$(BOOST_ROOT)&quot;;&quot;$(IPOPT_ROOT)\include&quot;"
+               AdditionalIncludeDirectories="&quot;$(IPOPT_ROOT)\include&quot;"
        />
        <Tool
                Name="VCLinkerTool"
                AdditionalLibraryDirectories="$(ROB_OPTIM_INSTALL_DIR)/lib"
        />
        <UserMacro
-               Name="ROB_OPTIM_INSTALL_DIR"
-               Value="C:\Libraries\roboptim"
-               PerformEnvironmentSet="true"
-       />
-       <UserMacro
-               Name="BOOST_ROOT"
-               Value="C:\Libraries\Boost\boost_1_40"
-       />
-       <UserMacro
                Name="IPOPT_ROOT"
                Value="C:\Libraries\Ipopt"
        />
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core.vsprops
similarity index 52%
copy from msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
copy to msvc/roboptim-core-plugin-ipopt/roboptim-core.vsprops
index 1bc677f..21344e6 100644
--- a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core.vsprops
@@ -2,28 +2,23 @@
 <VisualStudioPropertySheet
        ProjectType="Visual C++"
        Version="8.00"
-       Name="roboptim-core-ipopt-plugin"
+       Name="roboptim-core"
        >
        <Tool
                Name="VCCLCompilerTool"
-               AdditionalOptions=" /D &quot;HAVE_CONFIG_H&quot;"
-               
AdditionalIncludeDirectories="&quot;$(ROB_OPTIM_INSTALL_DIR)\include&quot;;&quot;$(BOOST_ROOT)&quot;;&quot;$(IPOPT_ROOT)\include&quot;"
+               
AdditionalIncludeDirectories="&quot;$(ROB_OPTIM_INSTALL_DIR)\include&quot;;&quot;$(BOOST_ROOT)&quot;"
        />
        <Tool
                Name="VCLinkerTool"
-               AdditionalLibraryDirectories="$(ROB_OPTIM_INSTALL_DIR)/lib"
+               
AdditionalLibraryDirectories="&quot;$(ROB_OPTIM_INSTALL_DIR)\lib&quot;"
        />
        <UserMacro
                Name="ROB_OPTIM_INSTALL_DIR"
-               Value="C:\Libraries\roboptim"
+               Value="&quot;C:/Libraries/roboptim&quot;"
                PerformEnvironmentSet="true"
        />
        <UserMacro
                Name="BOOST_ROOT"
-               Value="C:\Libraries\Boost\boost_1_40"
-       />
-       <UserMacro
-               Name="IPOPT_ROOT"
-               Value="C:\Libraries\Ipopt"
+               Value="C:\Libraries\Boost\boost_1_39_0"
        />
 </VisualStudioPropertySheet>
diff --git a/msvc/simple/simple.vcproj b/msvc/simple/simple.vcproj
index b4fd594..c76893f 100644
--- a/msvc/simple/simple.vcproj
+++ b/msvc/simple/simple.vcproj
@@ -19,7 +19,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        CharacterSet="2"
                        >
                        <Tool
@@ -94,7 +94,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        CharacterSet="2"
                        WholeProgramOptimization="1"
                        >
diff --git a/msvc/simplewithdll/simplewithdll.vcproj 
b/msvc/simplewithdll/simplewithdll.vcproj
index 081cac5..d61dbec 100644
--- a/msvc/simplewithdll/simplewithdll.vcproj
+++ b/msvc/simplewithdll/simplewithdll.vcproj
@@ -18,7 +18,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        >
                        <Tool
                                Name="VCPreBuildEventTool"
@@ -92,7 +92,7 @@
                        OutputDirectory="$(SolutionDir)$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
-                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops;..\roboptim-core-plugin-ipopt\roboptim-core.vsprops"
                        >
                        <Tool
                                Name="VCPreBuildEventTool"

commit a0dda13bda60c87fc344195c41366c9a98d6aeb4
Author: Francois Keith <francois.ke...@aist.go.jp>
Date:   Mon Apr 5 21:26:39 2010 +0900

    Add to the .gitignore file the files contained in the folder msvc
    
        * .gitignore: here
    
    Signed-of-by: Keith Francois <francois.ke...@aist.go.jp>

diff --git a/.gitignore b/.gitignore
index 2641437..d43046d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,8 @@ testsuite.log
 *svn-log*
 .version
 .tarball-version
+msvc/*/Debug
+msvc/*/Release
+msvc/*/*.ncb
+msvc/*/*.suo
+msvc/*/*.vcproj.*
\ No newline at end of file

commit 428462a9bb51886e07e306a3d57cf5d16024b56a
Author: Francois Keith <francois.ke...@aist.go.jp>
Date:   Mon Apr 5 21:26:05 2010 +0900

    Win32: Add the MSVC project to build the plugin ipopt It is adapted for the 
precompiled version of ipopt.
    
        * msvc/INSTALL/INSTALL.vcproj: the install procedure
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.sln: the 
whole project
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj: 
the plugin for ipopt
        * msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops: 
the property sheet gathering all the required dependencies
        * msvc/simple/simple.vcproj: a simple test
        * msvc/simplewithdll/simplewithdll.vcproj: a simple test using the 
roboptim-core-ipopt-plugin.dll generated
    
    Signed-of-by: Keith Francois <francois.ke...@aist.go.jp>

diff --git a/msvc/INSTALL/INSTALL.vcproj b/msvc/INSTALL/INSTALL.vcproj
new file mode 100644
index 0000000..ea27c98
--- /dev/null
+++ b/msvc/INSTALL/INSTALL.vcproj
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8,00"
+       Name="INSTALL"
+       ProjectGUID="{D33006C5-3F63-488A-99CB-8C08109EA5F9}"
+       RootNamespace="INSTALL"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="10"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.dll    
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.pdb 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Debug\roboptim-core-ipopt-plugind.lib    
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="10"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       WholeProgramOptimization="1"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                               CommandLine="set 
root_directory=%ROB_OPTIM_INSTALL_DIR%&#x0D;&#x0A;&#x0D;&#x0A;XCOPY 
..\..\include %root_directory%\include /S /E /C /I /F /K /Y 
/EXCLUDE:excludedFiles.txt&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.dll 
%root_directory%\bin\   /S /E /C /I /F /K /Y&#x0D;&#x0A;XCOPY 
..\roboptim-core-plugin-ipopt\Release\roboptim-core-ipopt-plugin.lib 
%root_directory%\lib\   /S /E /C /I /F /K /Y&#x0D;&#x0A;"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.sln 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.sln
new file mode 100644
index 0000000..32a29f7
--- /dev/null
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.sln
@@ -0,0 +1,42 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = 
"roboptim-core-ipopt-plugin", "roboptim-core-ipopt-plugin.vcproj", 
"{2371865E-1D2F-4E27-AD95-7100418D803E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple", 
"..\simple\simple.vcproj", "{3369E2C9-0EAB-4907-B058-C189B0C8D02A}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simplewithdll", 
"..\simplewithdll\simplewithdll.vcproj", 
"{BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}"
+       ProjectSection(ProjectDependencies) = postProject
+               {2371865E-1D2F-4E27-AD95-7100418D803E} = 
{2371865E-1D2F-4E27-AD95-7100418D803E}
+       EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", 
"..\INSTALL\INSTALL.vcproj", "{D33006C5-3F63-488A-99CB-8C08109EA5F9}"
+       ProjectSection(ProjectDependencies) = postProject
+               {2371865E-1D2F-4E27-AD95-7100418D803E} = 
{2371865E-1D2F-4E27-AD95-7100418D803E}
+       EndProjectSection
+EndProject
+Global
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution
+               Debug|Win32 = Debug|Win32
+               Release|Win32 = Release|Win32
+       EndGlobalSection
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution
+               {2371865E-1D2F-4E27-AD95-7100418D803E}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {2371865E-1D2F-4E27-AD95-7100418D803E}.Debug|Win32.Build.0 = 
Debug|Win32
+               {2371865E-1D2F-4E27-AD95-7100418D803E}.Release|Win32.ActiveCfg 
= Release|Win32
+               {2371865E-1D2F-4E27-AD95-7100418D803E}.Release|Win32.Build.0 = 
Release|Win32
+               {3369E2C9-0EAB-4907-B058-C189B0C8D02A}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {3369E2C9-0EAB-4907-B058-C189B0C8D02A}.Debug|Win32.Build.0 = 
Debug|Win32
+               {3369E2C9-0EAB-4907-B058-C189B0C8D02A}.Release|Win32.ActiveCfg 
= Release|Win32
+               {3369E2C9-0EAB-4907-B058-C189B0C8D02A}.Release|Win32.Build.0 = 
Release|Win32
+               {BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}.Debug|Win32.Build.0 = 
Debug|Win32
+               {BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}.Release|Win32.ActiveCfg 
= Release|Win32
+               {BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}.Release|Win32.Build.0 = 
Release|Win32
+               {D33006C5-3F63-488A-99CB-8C08109EA5F9}.Debug|Win32.ActiveCfg = 
Debug|Win32
+               {D33006C5-3F63-488A-99CB-8C08109EA5F9}.Release|Win32.ActiveCfg 
= Release|Win32
+       EndGlobalSection
+       GlobalSection(SolutionProperties) = preSolution
+               HideSolutionNode = FALSE
+       EndGlobalSection
+EndGlobal
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
new file mode 100644
index 0000000..773359e
--- /dev/null
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
@@ -0,0 +1,205 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="roboptim-core-ipopt-plugin"
+       ProjectGUID="{2371865E-1D2F-4E27-AD95-7100418D803E}"
+       RootNamespace="roboptimcoreipoptplugin"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="2"
+                       
InheritedPropertySheets=".\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\include&quot;"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="4"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-cored.lib 
Ipopt.lib"
+                               OutputFile="$(OutDir)\$(ProjectName)d.dll"
+                               
AdditionalLibraryDirectories="$(IPOPT_ROOT)\lib\win32\Debug"
+                               GenerateDebugInformation="true"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="2"
+                       
InheritedPropertySheets=".\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       WholeProgramOptimization="1"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\include&quot;"
+                               RuntimeLibrary="2"
+                               WarningLevel="3"
+                               Detect64BitPortabilityProblems="true"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-core.lib  
Ipopt.lib"
+                               
AdditionalLibraryDirectories="$(IPOPT_ROOT)\lib\win32\Release"
+                               GenerateDebugInformation="false"
+                               OptimizeReferences="2"
+                               EnableCOMDATFolding="2"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Fichiers sources"
+                       Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <File
+                               
RelativePath="..\..\src\roboptim-core-ipopt-plugin.cc"
+                               >
+                       </File>
+                       <Filter
+                               Name="Fichiers de ressources"
+                               
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+                               
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+                               >
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Fichiers d&apos;en-tête"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File
+                               RelativePath="..\..\src\doc.hh"
+                               >
+                       </File>
+                       <File
+                               
RelativePath="..\..\include\roboptim\core\plugin\ipopt.hh"
+                               >
+                       </File>
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
diff --git a/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops 
b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
new file mode 100644
index 0000000..1bc677f
--- /dev/null
+++ b/msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="roboptim-core-ipopt-plugin"
+       >
+       <Tool
+               Name="VCCLCompilerTool"
+               AdditionalOptions=" /D &quot;HAVE_CONFIG_H&quot;"
+               
AdditionalIncludeDirectories="&quot;$(ROB_OPTIM_INSTALL_DIR)\include&quot;;&quot;$(BOOST_ROOT)&quot;;&quot;$(IPOPT_ROOT)\include&quot;"
+       />
+       <Tool
+               Name="VCLinkerTool"
+               AdditionalLibraryDirectories="$(ROB_OPTIM_INSTALL_DIR)/lib"
+       />
+       <UserMacro
+               Name="ROB_OPTIM_INSTALL_DIR"
+               Value="C:\Libraries\roboptim"
+               PerformEnvironmentSet="true"
+       />
+       <UserMacro
+               Name="BOOST_ROOT"
+               Value="C:\Libraries\Boost\boost_1_40"
+       />
+       <UserMacro
+               Name="IPOPT_ROOT"
+               Value="C:\Libraries\Ipopt"
+       />
+</VisualStudioPropertySheet>
diff --git a/msvc/simple/simple.vcproj b/msvc/simple/simple.vcproj
new file mode 100644
index 0000000..b4fd594
--- /dev/null
+++ b/msvc/simple/simple.vcproj
@@ -0,0 +1,218 @@
+<?xml version="1.0" encoding="shift_jis"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="simple"
+       ProjectGUID="{3369E2C9-0EAB-4907-B058-C189B0C8D02A}"
+       RootNamespace="simple"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               WarningLevel="3"
+                               DebugInformationFormat="4"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-cored.lib  
Ipopt.lib"
+                               OutputFile="$(OutDir)\$(ProjectName)d.exe"
+                               
AdditionalLibraryDirectories="&quot;$(IPOPT_ROOT)\lib\win32\Debug&quot;"
+                               GenerateDebugInformation="true"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       CharacterSet="2"
+                       WholeProgramOptimization="1"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="2"
+                               EnableIntrinsicFunctions="true"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               RuntimeLibrary="2"
+                               EnableFunctionLevelLinking="true"
+                               WarningLevel="3"
+                               DebugInformationFormat="3"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-core.lib  
Ipopt.lib"
+                               
AdditionalLibraryDirectories="$(IPOPT_ROOT)\lib\win32\Release"
+                               GenerateDebugInformation="false"
+                               OptimizeReferences="2"
+                               EnableCOMDATFolding="2"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Fichiers sources"
+                       Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <File
+                               
RelativePath="..\..\src\roboptim-core-ipopt-plugin.cc"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\tests\simple.cc"
+                               >
+                       </File>
+               </Filter>
+               <Filter
+                       Name="Fichiers d&apos;en-t&#234;te"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File
+                               RelativePath="..\..\tests\common.hh"
+                               >
+                       </File>
+                       <Filter
+                               Name="shared-tests"
+                               >
+                               <File
+                                       
RelativePath="..\..\tests\shared-tests\hs071.hh"
+                                       >
+                               </File>
+                               <File
+                                       
RelativePath="..\..\include\roboptim\core\plugin\ipopt.hh"
+                                       >
+                               </File>
+                       </Filter>
+               </Filter>
+               <Filter
+                       Name="Fichiers de ressources"
+                       
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+                       
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+                       >
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>
diff --git a/msvc/simplewithdll/simplewithdll.vcproj 
b/msvc/simplewithdll/simplewithdll.vcproj
new file mode 100644
index 0000000..081cac5
--- /dev/null
+++ b/msvc/simplewithdll/simplewithdll.vcproj
@@ -0,0 +1,189 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+       ProjectType="Visual C++"
+       Version="8.00"
+       Name="simplewithdll"
+       ProjectGUID="{BDC2881A-ACF0-493E-9C3A-9AA4C2BB68C5}"
+       >
+       <Platforms>
+               <Platform
+                       Name="Win32"
+               />
+       </Platforms>
+       <ToolFiles>
+       </ToolFiles>
+       <Configurations>
+               <Configuration
+                       Name="Debug|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               Optimization="0"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               MinimalRebuild="true"
+                               BasicRuntimeChecks="3"
+                               RuntimeLibrary="3"
+                               WarningLevel="3"
+                               DebugInformationFormat="4"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-cored.lib 
roboptim-core-ipopt-plugind.lib"
+                               OutputFile="$(OutDir)\$(ProjectName)d.exe"
+                               
AdditionalLibraryDirectories="&quot;..\roboptim-core-plugin-ipopt\Debug&quot;"
+                               GenerateDebugInformation="true"
+                               TargetMachine="1"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+               <Configuration
+                       Name="Release|Win32"
+                       OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+                       IntermediateDirectory="$(ConfigurationName)"
+                       ConfigurationType="1"
+                       
InheritedPropertySheets="..\roboptim-core-plugin-ipopt\roboptim-core-ipopt-plugin.vsprops"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                       />
+                       <Tool
+                               Name="VCCLCompilerTool"
+                               
AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\tests\shared-tests&quot;;&quot;$(ProjectDir)\..\..\tests&quot;;&quot;$(ProjectDir)\..\roboptim-core-plugin-ipopt&quot;;&quot;$(ProjectDir)\..\..\src&quot;;&quot;$(ProjectDir)\..\..\include&quot;"
+                               RuntimeLibrary="2"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
+                       <Tool
+                               Name="VCLinkerTool"
+                               AdditionalDependencies="roboptim-core.lib 
roboptim-core-ipopt-plugin.lib"
+                               
AdditionalLibraryDirectories="&quot;..\roboptim-core-plugin-ipopt\Release&quot;"
+                       />
+                       <Tool
+                               Name="VCALinkTool"
+                       />
+                       <Tool
+                               Name="VCManifestTool"
+                       />
+                       <Tool
+                               Name="VCXDCMakeTool"
+                       />
+                       <Tool
+                               Name="VCBscMakeTool"
+                       />
+                       <Tool
+                               Name="VCFxCopTool"
+                       />
+                       <Tool
+                               Name="VCAppVerifierTool"
+                       />
+                       <Tool
+                               Name="VCWebDeploymentTool"
+                       />
+                       <Tool
+                               Name="VCPostBuildEventTool"
+                       />
+               </Configuration>
+       </Configurations>
+       <References>
+       </References>
+       <Files>
+               <Filter
+                       Name="Source Files"
+                       Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+                       
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+                       >
+                       <File
+                               RelativePath="..\..\tests\simple.cc"
+                               >
+                       </File>
+               </Filter>
+               <Filter
+                       Name="Header Files"
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"
+                       
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+                       >
+                       <File
+                               RelativePath="..\..\tests\shared-tests\hs071.hh"
+                               >
+                       </File>
+               </Filter>
+               <Filter
+                       Name="Resource Files"
+                       
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+                       
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+                       >
+               </Filter>
+       </Files>
+       <Globals>
+       </Globals>
+</VisualStudioProject>

-----------------------------------------------------------------------

Summary of changes:
 .gitignore                                         |    5 +
 msvc/INSTALL/INSTALL.vcproj                        |   69 ++++++
 .../roboptim-core-ipopt-plugin.sln                 |   42 ++++
 .../roboptim-core-ipopt-plugin.vcproj              |  207 ++++++++++++++++++
 .../roboptim-core-ipopt-plugin.vsprops             |   20 ++
 .../roboptim-core.vsprops                          |   24 ++
 msvc/simple/simple.vcproj                          |  220 ++++++++++++++++++++
 msvc/simplewithdll/simplewithdll.vcproj            |  189 +++++++++++++++++
 src/roboptim-core-ipopt-plugin.cc                  |    6 +
 9 files changed, 782 insertions(+), 0 deletions(-)
 create mode 100644 msvc/INSTALL/INSTALL.vcproj
 create mode 100644 
msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.sln
 create mode 100644 
msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vcproj
 create mode 100644 
msvc/roboptim-core-plugin-ipopt/roboptim-core-ipopt-plugin.vsprops
 create mode 100644 msvc/roboptim-core-plugin-ipopt/roboptim-core.vsprops
 create mode 100644 msvc/simple/simple.vcproj
 create mode 100644 msvc/simplewithdll/simplewithdll.vcproj


hooks/post-receive
-- 
roboptim-core-plugin-ipopt

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
roboptim-commit mailing list
roboptim-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/roboptim-commit

Reply via email to