From dbe6e76332c4eda87aa2d2168dd14c274a4930d4 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Thu, 27 Feb 2014 15:55:40 +0100 Subject: Add CoinMP external as an alternative to lpsolve. Change-Id: I9bf5c339a34655c3b842cef3af76814a14c483bc --- external/Module_external.mk | 1 + external/coinmp/ExternalPackage_coinmp.mk | 36 + external/coinmp/ExternalProject_coinmp.mk | 35 + external/coinmp/Makefile | 7 + external/coinmp/Module_coinmp.mk | 18 + external/coinmp/README | 5 + external/coinmp/UnpackedTarball_coinmp.mk | 22 + external/coinmp/windows.build.patch.1 | 3225 +++++++++++++++++++++++++++++ 8 files changed, 3349 insertions(+) create mode 100644 external/coinmp/ExternalPackage_coinmp.mk create mode 100644 external/coinmp/ExternalProject_coinmp.mk create mode 100644 external/coinmp/Makefile create mode 100644 external/coinmp/Module_coinmp.mk create mode 100644 external/coinmp/README create mode 100644 external/coinmp/UnpackedTarball_coinmp.mk create mode 100644 external/coinmp/windows.build.patch.1 (limited to 'external') diff --git a/external/Module_external.mk b/external/Module_external.mk index cef4e5986493..a3ad7d4a44bf 100644 --- a/external/Module_external.mk +++ b/external/Module_external.mk @@ -29,6 +29,7 @@ $(eval $(call gb_Module_add_moduledirs,external,\ $(call gb_Helper_optional,CDR,libcdr) \ $(call gb_Helper_optional,CLUCENE,clucene) \ $(call gb_Helper_optional,CMIS,libcmis) \ + $(call gb_Helper_optional,COINMP,coinmp) \ $(call gb_Helper_optional,CPPUNIT,cppunit) \ $(call gb_Helper_optional,CT2N,ct2n) \ $(call gb_Helper_optional,CURL,curl) \ diff --git a/external/coinmp/ExternalPackage_coinmp.mk b/external/coinmp/ExternalPackage_coinmp.mk new file mode 100644 index 000000000000..de01822622c1 --- /dev/null +++ b/external/coinmp/ExternalPackage_coinmp.mk @@ -0,0 +1,36 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_ExternalPackage_ExternalPackage,coinmp,coinmp)) + +$(eval $(call gb_ExternalPackage_use_external_project,coinmp,coinmp)) + +ifeq ($(OS),WNT) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/CoinMP.dll,CoinMP/MSVisualStudio/v9/release/CoinMP.dll)) +else ifeq ($(OS),MACOSX) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCbc.3.dylib,Cbc/src/.libs/libCbc.3.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCbcSolver.3.dylib,Cbc/src/.libs/libCbcSolver.3.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCgl.1.dylib,Cgl/src/.libs/libCgl.1.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libClp.1.dylib,Clp/src/.libs/libClp.1.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libOsiClp.1.dylib,Clp/src/OsiClp/.libs/libOsiClp.1.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCoinMP.1.dylib,CoinMP/src/.libs/libCoinMP.1.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCoinUtils.3.dylib,CoinUtils/src/.libs/libCoinUtils.3.dylib)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libOsi.1.dylib,Osi/src/Osi/.libs/libOsi.1.dylib)) +else +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCbc.so.3,Cbc/src/.libs/libCbc.so.3.8.8)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCbcSolver.so.3,Cbc/src/.libs/libCbcSolver.so.3.8.8)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCgl.so.1,Cgl/src/.libs/libCgl.so.1.8.5)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libClp.so.1,Clp/src/.libs/libClp.so.1.12.6)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libOsiClp.so.1,Clp/src/OsiClp/.libs/libOsiClp.so.1.12.6)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCoinMP.so.1,CoinMP/src/.libs/libCoinMP.so.1.7.6)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libCoinUtils.so.3,CoinUtils/src/.libs/libCoinUtils.so.3.9.11)) +$(eval $(call gb_ExternalPackage_add_file,coinmp,$(LIBO_LIB_FOLDER)/libOsi.so.1,Osi/src/Osi/.libs/libOsi.so.1.11.5)) +endif + +# vim: set noet sw=4 ts=4: diff --git a/external/coinmp/ExternalProject_coinmp.mk b/external/coinmp/ExternalProject_coinmp.mk new file mode 100644 index 000000000000..b66e8779dfec --- /dev/null +++ b/external/coinmp/ExternalProject_coinmp.mk @@ -0,0 +1,35 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_ExternalProject_ExternalProject,coinmp)) + +$(eval $(call gb_ExternalProject_register_targets,coinmp,\ + build \ +)) + +ifeq ($(COM),MSC) +$(call gb_ExternalProject_get_state_target,coinmp,build) : + $(call gb_ExternalProject_run,build,\ + MSBuild.exe CoinMP.sln /t:Build \ + /p:Configuration=$(if $(MSVC_USE_DEBUG_RUNTIME),Debug,Release) \ + /p:Platform=Win32 \ + $(if $(filter 100,$(VCVER)),/p:PlatformToolset=v100 /p:VisualStudioVersion=10.0) \ + $(if $(filter 110,$(VCVER)),/p:PlatformToolset=v110 /p:VisualStudioVersion=11.0) \ + ,CoinMP/MSVisualStudio/v9) + +else +$(call gb_ExternalProject_get_state_target,coinmp,build) : + +$(call gb_ExternalProject_run,build,\ + ./configure COIN_SKIP_PROJECTS="Data/Sample" \ + && $(MAKE) \ + ) + +endif + +# vim: set noet sw=4 ts=4: diff --git a/external/coinmp/Makefile b/external/coinmp/Makefile new file mode 100644 index 000000000000..e4968cf85fb6 --- /dev/null +++ b/external/coinmp/Makefile @@ -0,0 +1,7 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- + +module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +include $(module_directory)/../../solenv/gbuild/partial_build.mk + +# vim: set noet sw=4 ts=4: diff --git a/external/coinmp/Module_coinmp.mk b/external/coinmp/Module_coinmp.mk new file mode 100644 index 000000000000..30d9d758548c --- /dev/null +++ b/external/coinmp/Module_coinmp.mk @@ -0,0 +1,18 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Module_Module,coinmp)) + +$(eval $(call gb_Module_add_targets,coinmp,\ + ExternalPackage_coinmp \ + ExternalProject_coinmp \ + UnpackedTarball_coinmp \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/external/coinmp/README b/external/coinmp/README new file mode 100644 index 000000000000..0e155d10fa52 --- /dev/null +++ b/external/coinmp/README @@ -0,0 +1,5 @@ +CoinMP is a C-API library that supports most of the functionality of CLP (Coin LP), +CBC (Coin Branch-and-Cut), and CGL (Cut Generation Library) projects. + +Info [https://projects.coin-or.org/CoinMP]. +From [http://www.coin-or.org/download/source/CoinMP/]. diff --git a/external/coinmp/UnpackedTarball_coinmp.mk b/external/coinmp/UnpackedTarball_coinmp.mk new file mode 100644 index 000000000000..5daf123e7151 --- /dev/null +++ b/external/coinmp/UnpackedTarball_coinmp.mk @@ -0,0 +1,22 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_UnpackedTarball_UnpackedTarball,coinmp)) + +$(eval $(call gb_UnpackedTarball_set_tarball,coinmp,$(COINMP_TARBALL))) + +$(eval $(call gb_UnpackedTarball_fix_end_of_line,coinmp,\ + CoinMP/MSVisualStudio/v9/CoinMP.sln \ +)) + +$(eval $(call gb_UnpackedTarball_add_patches,coinmp,\ + external/coinmp/windows.build.patch.1 \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/external/coinmp/windows.build.patch.1 b/external/coinmp/windows.build.patch.1 new file mode 100644 index 000000000000..560f9baa7e22 --- /dev/null +++ b/external/coinmp/windows.build.patch.1 @@ -0,0 +1,3225 @@ +diff -urN coinmp.org/Cbc/MSVisualStudio/v9/libCbc/libCbc.vcxproj coinmp/Cbc/MSVisualStudio/v9/libCbc/libCbc.vcxproj +--- coinmp.org/Cbc/MSVisualStudio/v9/libCbc/libCbc.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Cbc/MSVisualStudio/v9/libCbc/libCbc.vcxproj 2014-02-28 15:32:36.548600694 +0100 +@@ -0,0 +1,506 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {363BA154-FEC9-4E1E-BC23-93CEC58AB785} ++ libCbc ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\..\Cbc\src\;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;_DEBUG;WIN32;_LIB;USE_CBCCONFIG;COIN_NO_CLP_MESSAGE;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ false ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\Cbc\src\;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;NDEBUG;WIN32;_LIB;USE_CBCCONFIG;COIN_NO_CLP_MESSAGE;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\Cbc\src\;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;_DEBUG;WIN32;_LIB;USE_CBCCONFIG;COIN_NO_CLP_MESSAGE;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ false ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\Cbc\src\;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;NDEBUG;WIN32;_LIB;USE_CBCCONFIG;COIN_NO_CLP_MESSAGE;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/Cbc/MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcxproj coinmp/Cbc/MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcxproj +--- coinmp.org/Cbc/MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Cbc/MSVisualStudio/v9/libCbcSolver/libCbcSolver.vcxproj 2014-02-28 15:32:36.548600694 +0100 +@@ -0,0 +1,172 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {71DA4595-E8A7-4B21-A00A-D96D29D11E3E} ++ libCbcSolver ++ ManagedCProj ++ ++ ++ ++ StaticLibrary ++ v110 ++ Unicode ++ false ++ false ++ ++ ++ StaticLibrary ++ v110 ++ Unicode ++ false ++ ++ ++ StaticLibrary ++ v110 ++ Unicode ++ false ++ false ++ ++ ++ StaticLibrary ++ v110 ++ Unicode ++ false ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\src;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGMI;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglRedSplit2;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Cgl\src\CglZeroHalf;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) ++ MultiThreadedDebugDLL ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ ++ ++ ..\..\..\src;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGMI;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglRedSplit2;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Cgl\src\CglZeroHalf;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\src;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGMI;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglRedSplit2;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Cgl\src\CglZeroHalf;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) ++ MultiThreadedDebugDLL ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ ++ ++ X64 ++ ++ ++ ..\..\..\src;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglDuplicateRow;..\..\..\..\Cgl\src\CglFlowCover;..\..\..\..\Cgl\src\CglGMI;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglLandP;..\..\..\..\Cgl\src\CglMixedIntegerRounding;..\..\..\..\Cgl\src\CglMixedIntegerRounding2;..\..\..\..\Cgl\src\CglPreProcess;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglRedSplit;..\..\..\..\Cgl\src\CglRedSplit2;..\..\..\..\Cgl\src\CglResidualCapacity;..\..\..\..\Cgl\src\CglTwomir;..\..\..\..\Cgl\src\CglZeroHalf;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ CBC_BUILD;WIN32;NDEBUG;_NDEBUG;COIN_FAST_CODE;CLP_FAST_CODE;COIN_NO_TEST_DUPLICATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ ++ ++ true ++ true ++ ++ ++ true ++ true ++ ++ ++ true ++ true ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/Cgl/MSVisualStudio/v9/libCgl/libCgl.vcxproj coinmp/Cgl/MSVisualStudio/v9/libCgl/libCgl.vcxproj +--- coinmp.org/Cgl/MSVisualStudio/v9/libCgl/libCgl.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Cgl/MSVisualStudio/v9/libCgl/libCgl.vcxproj 2014-02-28 15:32:36.552600694 +0100 +@@ -0,0 +1,397 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {DBEA3904-F0B8-408A-9E1A-6497FEBE8C42} ++ libCgl ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\src;..\..\..\src\CglClique;..\..\..\src\CglDuplicateRow;..\..\..\src\CglFlowCover;..\..\..\src\CglGomory;..\..\..\src\CglKnapsackCover;..\..\..\src\CglMixedIntegerRounding;..\..\..\src\CglMixedIntegerRounding2;..\..\..\src\CglOddHole;..\..\..\src\CglPreProcess;..\..\..\src\CglProbing;..\..\..\src\CglRedSplit;..\..\..\src\CglResidualCapacity;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ Disabled ++ ..\..\..\src;..\..\..\src\CglClique;..\..\..\src\CglDuplicateRow;..\..\..\src\CglFlowCover;..\..\..\src\CglGomory;..\..\..\src\CglKnapsackCover;..\..\..\src\CglMixedIntegerRounding;..\..\..\src\CglMixedIntegerRounding2;..\..\..\src\CglOddHole;..\..\..\src\CglPreProcess;..\..\..\src\CglProbing;..\..\..\src\CglRedSplit;..\..\..\src\CglResidualCapacity;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\src;..\..\..\src\CglClique;..\..\..\src\CglDuplicateRow;..\..\..\src\CglFlowCover;..\..\..\src\CglGomory;..\..\..\src\CglKnapsackCover;..\..\..\src\CglMixedIntegerRounding;..\..\..\src\CglMixedIntegerRounding2;..\..\..\src\CglOddHole;..\..\..\src\CglPreProcess;..\..\..\src\CglProbing;..\..\..\src\CglRedSplit;..\..\..\src\CglResidualCapacity;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\src;..\..\..\src\CglClique;..\..\..\src\CglDuplicateRow;..\..\..\src\CglFlowCover;..\..\..\src\CglGomory;..\..\..\src\CglKnapsackCover;..\..\..\src\CglMixedIntegerRounding;..\..\..\src\CglMixedIntegerRounding2;..\..\..\src\CglOddHole;..\..\..\src\CglPreProcess;..\..\..\src\CglProbing;..\..\..\src\CglRedSplit;..\..\..\src\CglResidualCapacity;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/Clp/MSVisualStudio/v9/libClp/libClp.vcxproj coinmp/Clp/MSVisualStudio/v9/libClp/libClp.vcxproj +--- coinmp.org/Clp/MSVisualStudio/v9/libClp/libClp.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Clp/MSVisualStudio/v9/libClp/libClp.vcxproj 2014-02-28 15:32:36.556600694 +0100 +@@ -0,0 +1,579 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {4F8F7D1C-3A9E-444D-8EE9-77F33FA05994} ++ libClp ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ CLP_BUILD;WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ CLP_BUILD;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ CLP_BUILD;WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ CLP_BUILD;WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/Clp/MSVisualStudio/v9/libOsiClp/libOsiClp.vcxproj coinmp/Clp/MSVisualStudio/v9/libOsiClp/libOsiClp.vcxproj +--- coinmp.org/Clp/MSVisualStudio/v9/libOsiClp/libOsiClp.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Clp/MSVisualStudio/v9/libOsiClp/libOsiClp.vcxproj 2014-02-28 15:32:36.556600694 +0100 +@@ -0,0 +1,181 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {02D45875-A8CF-41B9-990B-3699C0ECFE10} ++ libOsiClp ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;..\..\..\..\Osi\src;..\..\..\..\Osi\src\Osi;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;..\..\..\..\Osi\src;..\..\..\..\Osi\src\Osi;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;..\..\..\..\Osi\src;..\..\..\..\Osi\src\Osi;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;..\..\..\..\Clp\src;..\..\..\..\Clp\src\OsiClp;..\..\..\..\Osi\src;..\..\..\..\Osi\src\Osi;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/CoinMP/MSVisualStudio/v9/CoinMP/CoinMP.vcxproj coinmp/CoinMP/MSVisualStudio/v9/CoinMP/CoinMP.vcxproj +--- coinmp.org/CoinMP/MSVisualStudio/v9/CoinMP/CoinMP.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/CoinMP/MSVisualStudio/v9/CoinMP/CoinMP.vcxproj 2014-02-28 15:32:36.560600694 +0100 +@@ -0,0 +1,237 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {175F0674-F0B9-479C-9C9D-76969C06D794} ++ CoinMP ++ Win32Proj ++ ++ ++ ++ DynamicLibrary ++ v110 ++ Unicode ++ true ++ ++ ++ DynamicLibrary ++ v110 ++ MultiByte ++ ++ ++ DynamicLibrary ++ v110 ++ Unicode ++ true ++ ++ ++ DynamicLibrary ++ v110 ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ true ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ false ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ true ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ false ++ ++ ++ ++ Disabled ++ ..\..\..\..\Clp\src;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cbc\src;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglLiftAndProject;..\..\..\..\Cgl\src\CglSimpleRounding;..\..\..\..\Clp\src\OsiClp;..\..\..\..\BuildTools\headers;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_WINDOWS;_USRDLL;COINMP_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ Level3 ++ EditAndContinue ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ ..\..\..\..\CoinMP\src\CoinMP.def ++ true ++ Windows ++ false ++ ++ MachineX86 ++ ++ ++ ++ ++ ..\..\..\..\Clp\src;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cbc\src;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglLiftAndProject;..\..\..\..\Cgl\src\CglSimpleRounding;..\..\..\..\Clp\src\OsiClp;..\..\..\..\BuildTools\headers;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_WINDOWS;_USRDLL;COINMP_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ ..\..\..\src\CoinMP.def ++ true ++ Windows ++ true ++ true ++ false ++ ++ MachineX86 ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\Clp\src;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cbc\src;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglLiftAndProject;..\..\..\..\Cgl\src\CglSimpleRounding;..\..\..\..\Clp\src\OsiClp;..\..\..\..\BuildTools\headers;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_WINDOWS;_USRDLL;COINMP_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ ..\..\..\..\CoinMP\src\CoinMP.def ++ true ++ Windows ++ false ++ ++ MachineX64 ++ ++ ++ ++ ++ X64 ++ ++ ++ ..\..\..\..\Clp\src;..\..\..\..\CoinUtils\src;..\..\..\..\Osi\src\Osi;..\..\..\..\Cbc\src;..\..\..\..\Cgl\src;..\..\..\..\Cgl\src\CglProbing;..\..\..\..\Cgl\src\CglGomory;..\..\..\..\Cgl\src\CglKnapsackCover;..\..\..\..\Cgl\src\CglOddHole;..\..\..\..\Cgl\src\CglClique;..\..\..\..\Cgl\src\CglLiftAndProject;..\..\..\..\Cgl\src\CglSimpleRounding;..\..\..\..\Clp\src\OsiClp;..\..\..\..\BuildTools\headers;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_WINDOWS;_USRDLL;COINMP_EXPORTS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ ..\..\..\src\CoinMP.def ++ true ++ Windows ++ true ++ true ++ false ++ ++ MachineX64 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ {71da4595-e8a7-4b21-a00a-d96d29d11e3e} ++ false ++ ++ ++ {363ba154-fec9-4e1e-bc23-93cec58ab785} ++ false ++ ++ ++ {dbea3904-f0b8-408a-9e1a-6497febe8c42} ++ false ++ ++ ++ {4f8f7d1c-3a9e-444d-8ee9-77f33fa05994} ++ false ++ ++ ++ {02d45875-a8cf-41b9-990b-3699c0ecfe10} ++ false ++ ++ ++ {c4867f15-438d-4ff8-8388-62fbaaa9786c} ++ false ++ ++ ++ {7d98e2cb-876e-4f75-9f71-77d3fe87e149} ++ false ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/CoinMP/MSVisualStudio/v9/CoinMP.sln coinmp/CoinMP/MSVisualStudio/v9/CoinMP.sln +--- coinmp.org/CoinMP/MSVisualStudio/v9/CoinMP.sln 2014-02-28 15:32:23.168600537 +0100 ++++ coinmp/CoinMP/MSVisualStudio/v9/CoinMP.sln 2014-02-28 15:32:36.580600695 +0100 +@@ -1,35 +1,23 @@ +  +-Microsoft Visual Studio Solution File, Format Version 10.00 +-# Visual Studio 2008 +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libClp", "..\..\..\Clp\MSVisualStudio\v9\libClp\libClp.vcproj", "{4F8F7D1C-3A9E-444D-8EE9-77F33FA05994}" ++Microsoft Visual Studio Solution File, Format Version 12.00 ++# Visual Studio Express 2012 for Windows Desktop ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libClp", "..\..\..\Clp\MSVisualStudio\v9\libClp\libClp.vcxproj", "{4F8F7D1C-3A9E-444D-8EE9-77F33FA05994}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCoinUtils", "..\..\..\CoinUtils\MSVisualStudio\v9\libCoinUtils\libCoinUtils.vcproj", "{C4867F15-438D-4FF8-8388-62FBAAA9786C}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCoinUtils", "..\..\..\CoinUtils\MSVisualStudio\v9\libCoinUtils\libCoinUtils.vcxproj", "{C4867F15-438D-4FF8-8388-62FBAAA9786C}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCgl", "..\..\..\Cgl\MSVisualStudio\v9\libCgl\libCgl.vcproj", "{DBEA3904-F0B8-408A-9E1A-6497FEBE8C42}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCgl", "..\..\..\Cgl\MSVisualStudio\v9\libCgl\libCgl.vcxproj", "{DBEA3904-F0B8-408A-9E1A-6497FEBE8C42}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCbc", "..\..\..\Cbc\MSVisualStudio\v9\libCbc\libCbc.vcproj", "{363BA154-FEC9-4E1E-BC23-93CEC58AB785}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCbc", "..\..\..\Cbc\MSVisualStudio\v9\libCbc\libCbc.vcxproj", "{363BA154-FEC9-4E1E-BC23-93CEC58AB785}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libOsi", "..\..\..\Osi\MSVisualStudio\v9\libOsi\libOsi.vcproj", "{7D98E2CB-876E-4F75-9F71-77D3FE87E149}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libOsi", "..\..\..\Osi\MSVisualStudio\v9\libOsi\libOsi.vcxproj", "{7D98E2CB-876E-4F75-9F71-77D3FE87E149}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libOsiClp", "..\..\..\Clp\MSVisualStudio\v9\libOsiClp\libOsiClp.vcproj", "{02D45875-A8CF-41B9-990B-3699C0ECFE10}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libOsiClp", "..\..\..\Clp\MSVisualStudio\v9\libOsiClp\libOsiClp.vcxproj", "{02D45875-A8CF-41B9-990B-3699C0ECFE10}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CoinMP", "CoinMP\CoinMP.vcproj", "{175F0674-F0B9-479C-9C9D-76969C06D794}" +- ProjectSection(ProjectDependencies) = postProject +- {DBEA3904-F0B8-408A-9E1A-6497FEBE8C42} = {DBEA3904-F0B8-408A-9E1A-6497FEBE8C42} +- {C4867F15-438D-4FF8-8388-62FBAAA9786C} = {C4867F15-438D-4FF8-8388-62FBAAA9786C} +- {4F8F7D1C-3A9E-444D-8EE9-77F33FA05994} = {4F8F7D1C-3A9E-444D-8EE9-77F33FA05994} +- {363BA154-FEC9-4E1E-BC23-93CEC58AB785} = {363BA154-FEC9-4E1E-BC23-93CEC58AB785} +- {02D45875-A8CF-41B9-990B-3699C0ECFE10} = {02D45875-A8CF-41B9-990B-3699C0ECFE10} +- {71DA4595-E8A7-4B21-A00A-D96D29D11E3E} = {71DA4595-E8A7-4B21-A00A-D96D29D11E3E} +- {7D98E2CB-876E-4F75-9F71-77D3FE87E149} = {7D98E2CB-876E-4F75-9F71-77D3FE87E149} +- EndProjectSection ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CoinMP", "CoinMP\CoinMP.vcxproj", "{175F0674-F0B9-479C-9C9D-76969C06D794}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unitTest", "unitTest\unitTest.vcproj", "{9F2D36EA-6D9E-42CB-A648-BCC0CB3E68E6}" +- ProjectSection(ProjectDependencies) = postProject +- {175F0674-F0B9-479C-9C9D-76969C06D794} = {175F0674-F0B9-479C-9C9D-76969C06D794} +- EndProjectSection ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unitTest", "unitTest\unitTest.vcxproj", "{9F2D36EA-6D9E-42CB-A648-BCC0CB3E68E6}" + EndProject +-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCbcSolver", "..\..\..\Cbc\MSVisualStudio\v9\libCbcSolver\libCbcSolver.vcproj", "{71DA4595-E8A7-4B21-A00A-D96D29D11E3E}" ++Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libCbcSolver", "..\..\..\Cbc\MSVisualStudio\v9\libCbcSolver\libCbcSolver.vcxproj", "{71DA4595-E8A7-4B21-A00A-D96D29D11E3E}" + EndProject + Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution +diff -urN coinmp.org/CoinMP/MSVisualStudio/v9/unitTest/unitTest.vcxproj coinmp/CoinMP/MSVisualStudio/v9/unitTest/unitTest.vcxproj +--- coinmp.org/CoinMP/MSVisualStudio/v9/unitTest/unitTest.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/CoinMP/MSVisualStudio/v9/unitTest/unitTest.vcxproj 2014-02-28 15:32:36.564600694 +0100 +@@ -0,0 +1,188 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {9F2D36EA-6D9E-42CB-A648-BCC0CB3E68E6} ++ unitTest ++ Win32Proj ++ ++ ++ ++ Application ++ v110 ++ Unicode ++ true ++ ++ ++ Application ++ v110 ++ Unicode ++ ++ ++ Application ++ v110 ++ Unicode ++ true ++ ++ ++ Application ++ v110 ++ Unicode ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ true ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ false ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ true ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ false ++ ++ ++ ++ Disabled ++ ..\..\..\..\CoinMP\src;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ Level3 ++ EditAndContinue ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ true ++ Console ++ false ++ ++ MachineX86 ++ ++ ++ ++ ++ ..\..\..\..\CoinMP\src;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ true ++ Console ++ true ++ true ++ false ++ ++ MachineX86 ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\CoinMP\src;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ true ++ Console ++ false ++ ++ MachineX64 ++ ++ ++ ++ ++ X64 ++ ++ ++ ..\..\..\..\CoinMP\src;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ 4996;%(DisableSpecificWarnings) ++ ++ ++ true ++ Console ++ true ++ true ++ false ++ ++ MachineX64 ++ ++ ++ ++ ++ ++ ++ ++ {175f0674-f0b9-479c-9c9d-76969c06d794} ++ false ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/CoinUtils/MSVisualStudio/v9/libCoinUtils/libCoinUtils.vcxproj coinmp/CoinUtils/MSVisualStudio/v9/libCoinUtils/libCoinUtils.vcxproj +--- coinmp.org/CoinUtils/MSVisualStudio/v9/libCoinUtils/libCoinUtils.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/CoinUtils/MSVisualStudio/v9/libCoinUtils/libCoinUtils.vcxproj 2014-02-28 15:32:36.564600694 +0100 +@@ -0,0 +1,650 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {C4867F15-438D-4FF8-8388-62FBAAA9786C} ++ libCoinUtils ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ Disabled ++ EnableFastChecks ++ Disabled ++ EnableFastChecks ++ MaxSpeed ++ MaxSpeed ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -urN coinmp.org/Osi/MSVisualStudio/v9/libOsi/libOsi.vcxproj coinmp/Osi/MSVisualStudio/v9/libOsi/libOsi.vcxproj +--- coinmp.org/Osi/MSVisualStudio/v9/libOsi/libOsi.vcxproj 1970-01-01 01:00:00.000000000 +0100 ++++ coinmp/Osi/MSVisualStudio/v9/libOsi/libOsi.vcxproj 2014-02-28 15:32:36.568600695 +0100 +@@ -0,0 +1,220 @@ ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {7D98E2CB-876E-4F75-9F71-77D3FE87E149} ++ ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ StaticLibrary ++ v110 ++ false ++ MultiByte ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>11.0.50727.1 ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Configuration)\ ++ $(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\..\..\Osi\src\Osi;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ EditAndContinue ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ Disabled ++ ..\..\..\..\Osi\src\Osi;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ true ++ ++ Level3 ++ true ++ ProgramDatabase ++ Default ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\Osi\src\Osi;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ X64 ++ ++ ++ MaxSpeed ++ OnlyExplicitInline ++ ..\..\..\..\Osi\src\Osi;..\..\..\..\BuildTools\headers;..\..\..\..\CoinUtils\inc;..\..\..\..\CoinUtils\src;%(AdditionalIncludeDirectories) ++ WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) ++ true ++ MultiThreadedDLL ++ true ++ true ++ ++ Level3 ++ true ++ Default ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x0409 ++ ++ ++ true ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file -- cgit