objecthandler-cvs Mailing List for ObjectHandler (Page 17)
Brought to you by:
ericehlers,
nando
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(115) |
Jun
(109) |
Jul
(85) |
Aug
(49) |
Sep
(19) |
Oct
(105) |
Nov
(16) |
Dec
(43) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(63) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Eric E. <eri...@us...> - 2006-06-14 13:15:34
|
Update of /cvsroot/objecthandler/ObjectHandler/gensrc/metadata In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26478/gensrc/metadata Modified Files: functions.xml Log Message: new function ohPack() Index: functions.xml =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/metadata/functions.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions.xml 11 Jun 2006 12:38:21 -0000 1.3 --- functions.xml 14 Jun 2006 13:15:25 -0000 1.4 *************** *** 387,390 **** --- 387,410 ---- </Procedure> + <!--Procedure name='ohPack'> + <description>trim error values from bottom/right of matrix/vector</description> + <alias>ObjHandler::ObjectHandlerXL::instance().packMatrix</alias> + <functionCategory>ObjectHandler</functionCategory> + <ParameterList> + <Parameters> + <Parameter name='inputRange'> + <type>any</type> + <tensorRank>matrix</tensorRank> + <description>scalar/vector/matrix of values to be packed</description> + </Parameter> + </Parameters> + </ParameterList> + <ReturnValue> + <type>any</type> + <tensorRank>matrix</tensorRank> + <description>input range with error values removed from bottom/right cells</description> + </ReturnValue> + </Procedure--> + </Functions> </Category> |
From: Eric E. <eri...@us...> - 2006-06-14 13:15:33
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26478/ohxl Modified Files: conversions.cpp conversions.hpp Log Message: new function ohPack() Index: conversions.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/conversions.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** conversions.cpp 1 Jun 2006 13:25:53 -0000 1.4 --- conversions.cpp 14 Jun 2006 13:15:25 -0000 1.5 *************** *** 51,57 **** throw Exception("stringToXloper: error calling new"); xString.xltype = xltypeStr | xlbitDLLFree; if (len) strncpy(xString.val.str + 1, value.c_str(), len); - xString.val.str[0] = len; } --- 51,57 ---- throw Exception("stringToXloper: error calling new"); xString.xltype = xltypeStr | xlbitDLLFree; + xString.val.str[0] = len; if (len) strncpy(xString.val.str + 1, value.c_str(), len); } *************** *** 295,298 **** --- 295,327 ---- } + void operToOper(OPER *xTarget, const OPER *xSource) { + if (xSource->xltype == xltypeNum) { + xTarget->xltype = xltypeNum; + xTarget->val.num = xSource->val.num; + return; + } else if (xSource->xltype == xltypeStr) { + int len = xSource->val.str[0]; + xTarget->val.str = new char[ len + 1 ]; + if (!xTarget->val.str) + throw Exception("operToOper: error calling new"); + xTarget->xltype = xltypeStr | xlbitDLLFree; + xTarget->val.str[0] = len; + if (len) + strncpy(xTarget->val.str + 1, xSource->val.str + 1, len); + return; + } else if (xSource->xltype == xltypeErr) { + xTarget->xltype = xltypeErr; + xTarget->val.err = xSource->val.err; + return; + } else if (xSource->xltype == xltypeNil) { + xTarget->xltype = xltypeNil; + return; + } else { + std::ostringstream msg; + msg << "operToOper: unexpected OPER type: " << xSource->xltype; + throw Exception(msg.str()); + } + } + } Index: conversions.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/conversions.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** conversions.hpp 13 Jun 2006 11:25:10 -0000 1.8 --- conversions.hpp 14 Jun 2006 13:15:25 -0000 1.9 *************** *** 29,32 **** --- 29,33 ---- DLL_API void stringToChar(char *c, const std::string &s); + void operToOper(OPER *xTarget, const OPER *xSource); // conversions from native C++ datatypes to Excel datatypes |
From: Eric E. <eri...@us...> - 2006-06-14 13:15:29
|
Update of /cvsroot/objecthandler/ObjectHandler/gensrc/stubs In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26478/gensrc/stubs Modified Files: stub.excel.exports stub.excel.includes stub.excel.register stub.excel.unregister Log Message: new function ohPack() Index: stub.excel.exports =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/stubs/stub.excel.exports,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stub.excel.exports 6 Jun 2006 09:08:30 -0000 1.1 --- stub.excel.exports 14 Jun 2006 13:15:25 -0000 1.2 *************** *** 3,6 **** --- 3,7 ---- #define ohxl_export_hpp + #pragma comment (linker, "/export:_ohPack") %s Index: stub.excel.register =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/stubs/stub.excel.register,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stub.excel.register 6 Jun 2006 09:08:30 -0000 1.1 --- stub.excel.register 14 Jun 2006 13:15:25 -0000 1.2 *************** *** 3,6 **** --- 3,18 ---- void ohRegisterFunctions(const XLOPER &xDll) { + Excel(xlfRegister, 0, 11, &xDll, + TempStrNoSize("\x06""ohPack"), // function code name + TempStrNoSize("\x03""RP#"), // parameter codes + TempStrNoSize("\x06""ohPack"), // function display name + TempStrNoSize("\x10""inputRange"), // comma-delimited list of parameter names + TempStrNoSize("\x01""1"), // function type (1 = worksheet function) + TempStrNoSize("\x0D""ObjectHandler"), // function category + TempStrNoSize("\x00"""), // shortcut text (command macros only) + TempStrNoSize("\x00"""), // path to help file + TempStrNoSize("\x3D""trim #ERR/empty values from bottom/right edges of input range"), // function description + TempStrNoSize("\x1D""range of cells to be packed ")); // description of parameter 1 + %(xlregister)s Index: stub.excel.unregister =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/stubs/stub.excel.unregister,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stub.excel.unregister 6 Jun 2006 09:08:30 -0000 1.1 --- stub.excel.unregister 14 Jun 2006 13:15:25 -0000 1.2 *************** *** 9,12 **** --- 9,27 ---- XLOPER xlRegID; + Excel(xlfRegister, 0, 11, &xDll, + TempStrNoSize("\x06""ohPack"), // function code name + TempStrNoSize("\x03""RP#"), // parameter codes + TempStrNoSize("\x06""ohPack"), // function display name + TempStrNoSize("\x10""inputRange"), // comma-delimited list of parameter names + TempStrNoSize("\x01""0"), // function type (0 = worksheet function) + TempStrNoSize("\x0D""ObjectHandler"), // function category + TempStrNoSize("\x00"""), // shortcut text (command macros only) + TempStrNoSize("\x00"""), // path to help file + TempStrNoSize("\x3D""trim #ERR/empty values from bottom/right edges of input range"), // function description + TempStrNoSize("\x1D""range of cells to be packed ")); // description of parameter 1 + + Excel4(xlfRegisterId, &xlRegID, 2, &xDll, + TempStrNoSize("\x06""ohPack")); // function code name + %(xlunregister)s Index: stub.excel.includes =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/stubs/stub.excel.includes,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stub.excel.includes 9 Jun 2006 18:58:27 -0000 1.2 --- stub.excel.includes 14 Jun 2006 13:15:25 -0000 1.3 *************** *** 22,23 **** --- 22,104 ---- } + int countValidRows(const XLOPER &xMulti) { + for (int numValidRows=xMulti.val.array.rows; numValidRows; numValidRows--) { + for (int i=0; i<xMulti.val.array.columns; i++) { + int index = (numValidRows - 1) * xMulti.val.array.columns + i; + if (!(xMulti.val.array.lparray[index].xltype & (xltypeErr | xltypeNil))) + return numValidRows; + } + } + return 1; + } + + int countValidCols(const XLOPER &xMulti) { + for (int numValidCols=xMulti.val.array.columns; numValidCols; numValidCols--) { + for (int i=0; i<xMulti.val.array.rows; i++) { + int index = (numValidCols - 1) + i * xMulti.val.array.columns; + if (!(xMulti.val.array.lparray[index].xltype & (xltypeErr | xltypeNil))) + return numValidCols; + } + } + return 1; + } + + XLL_DEC XLOPER *ohPack(OPER *xInputRange) { + + boost::shared_ptr < ObjHandler::FunctionCall > functionCall; + XLOPER xMulti; + static XLOPER xRet; + xRet.val.array.lparray = 0; + + try { + functionCall = boost::shared_ptr < ObjHandler::FunctionCall > + ( new ObjHandler::FunctionCall("ohPack") ); + + Excel(xlCoerce, &xMulti, 2, xInputRange, TempInt(xltypeMulti)); + + int numValidRows = countValidRows(xMulti); + int numValidCols = countValidCols(xMulti); + + xRet.val.array.rows = numValidRows; + xRet.val.array.columns = numValidCols; + xRet.val.array.lparray = new XLOPER[numValidRows * numValidCols]; + if (!xRet.val.array.lparray) + throw ObjHandler::Exception("ohPack: error on call to new"); + xRet.xltype = xltypeMulti | xlbitDLLFree; + + for (int i=0; i<numValidRows; i++) { + for (int j=0; j<numValidCols; j++) { + int indexSource = i * xMulti.val.array.columns + j; + int indexTarget = i * numValidCols + j; + ObjHandler::operToOper(&xRet.val.array.lparray[indexTarget], + &xMulti.val.array.lparray[indexSource]); + } + } + + Excel(xlFree, 0, 1, &xMulti); + return &xRet; + } catch (const std::exception &e) { + + // free any memory that may have been allocated + + Excel(xlFree, 0, 1, &xMulti); + + if (xRet.xltype & xltypeMulti && xRet.val.array.lparray) { + for (int i=0; i<xRet.val.array.columns * xRet.val.array.rows; i++) { + if (xRet.val.array.lparray[i].xltype & xltypeStr && xRet.val.array.lparray[i].val.str) + delete [] xRet.val.array.lparray[i].val.str; + } + delete [] xRet.val.array.lparray; + } + + // log the exception and return a null pointer (#NUM!) to Excel + + std::ostringstream err; + err << "ohPack - "; + if (functionCall) err << functionCall->getAddressString() << " - "; + err << e.what(); + ObjHandler::logMessage(err.str(), 2); + return 0; + } + } + |
From: Eric E. <eri...@us...> - 2006-06-13 15:46:22
|
Update of /cvsroot/objecthandler/ObjectHandler/gensrc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2889/gensrc Modified Files: Makefile.vc Log Message: enforce make dependencies between local and core gensrc Index: Makefile.vc =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/Makefile.vc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.vc 6 Jun 2006 09:08:27 -0000 1.1 --- Makefile.vc 13 Jun 2006 15:46:16 -0000 1.2 *************** *** 1,4 **** --- 1,6 ---- # ObjectHandler\gensrc\Makefile.vc + !INCLUDE $(GENSRC_DIR)\dependencies.vc + BUILD_DIR=build\vc BUILDFLAG=$(BUILD_DIR)\buildflag *************** *** 16,20 **** stubs\stub.excel.unregister ! INPUTS = $(METADATA) $(CONFIG) $(STUBS) ALL : $(BUILDFLAG) --- 18,22 ---- stubs\stub.excel.unregister ! INPUTS = $(METADATA) $(CONFIG) $(STUBS) $(CORE_DEPENDENCIES) ALL : $(BUILDFLAG) |
From: Eric E. <eri...@us...> - 2006-06-13 11:25:14
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25591/ohxl Modified Files: conversions.hpp Log Message: fix typo Index: conversions.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/conversions.hpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** conversions.hpp 13 Jun 2006 10:39:23 -0000 1.7 --- conversions.hpp 13 Jun 2006 11:25:10 -0000 1.8 *************** *** 189,193 **** bool needToFree = false; try { ! std::vector < std::vector < T > > ret, if (xMatrix.xltype & xltypeErr) throw Exception("input value is #NULL (xltypeErr)"); --- 189,193 ---- bool needToFree = false; try { ! std::vector < std::vector < T > > ret; if (xMatrix.xltype & xltypeErr) throw Exception("input value is #NULL (xltypeErr)"); |
From: Eric E. <eri...@us...> - 2006-06-13 10:39:32
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3793/ohxl Modified Files: conversions.hpp Log Message: cleaner support for custom conversions (e.g. QuantLib::Period to/from std::string) Index: conversions.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/conversions.hpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** conversions.hpp 8 Jun 2006 11:33:38 -0000 1.6 --- conversions.hpp 13 Jun 2006 10:39:23 -0000 1.7 *************** *** 238,241 **** --- 238,246 ---- } + template < typename T > + T operToScalarLibrary(const std::string &arg) { + return T(arg); + } + template < class T > T operToScalarLibrary(const OPER &xArg, const long &defaultValue=0) { |
From: Ferdinando A. <na...@us...> - 2006-06-12 14:14:14
|
Update of /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4548/msvc/static Modified Files: static_vc8.vcproj Log Message: fixing C run-time library Index: static_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static/static_vc8.vcproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** static_vc8.vcproj 12 Jun 2006 12:44:18 -0000 1.4 --- static_vc8.vcproj 12 Jun 2006 14:14:05 -0000 1.5 *************** *** 420,424 **** PreprocessorDefinitions="WIN32;NDEBUG;_LIB;LOG4CXX;LOG4CXX_STATIC;_CRT_SECURE_NO_DEPRECATE" BasicRuntimeChecks="3" ! RuntimeLibrary="3" UsePrecompiledHeader="0" PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" --- 420,424 ---- PreprocessorDefinitions="WIN32;NDEBUG;_LIB;LOG4CXX;LOG4CXX_STATIC;_CRT_SECURE_NO_DEPRECATE" BasicRuntimeChecks="3" ! RuntimeLibrary="2" UsePrecompiledHeader="0" PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" |
From: Ferdinando A. <na...@us...> - 2006-06-12 12:50:41
|
Update of /cvsroot/objecthandler/ObjectHandler In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2360 Modified Files: ObjectHandler_vc8.sln Log Message: fixed association between Solution Configuration and Project onfiguration Index: ObjectHandler_vc8.sln =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ObjectHandler_vc8.sln,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ObjectHandler_vc8.sln 8 Jun 2006 17:48:59 -0000 1.7 --- ObjectHandler_vc8.sln 12 Jun 2006 12:50:28 -0000 1.8 *************** *** 9,20 **** Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleXllDynamic2", "Examples\xl\ExampleXllDynamic2_vc8.vcproj", "{F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}" ProjectSection(ProjectDependencies) = postProject - {04D7369F-47BC-46B0-A374-41635A9656D8} = {04D7369F-47BC-46B0-A374-41635A9656D8} {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleXllStatic", "Examples\xl\ExampleXllStatic_vc8.vcproj", "{687DB6AF-730F-4740-B20A-B95EA8180E8D}" ProjectSection(ProjectDependencies) = postProject - {66021664-4359-442C-ACC7-7C82F51C9D5A} = {66021664-4359-442C-ACC7-7C82F51C9D5A} {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} EndProjectSection EndProject --- 9,20 ---- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleXllDynamic2", "Examples\xl\ExampleXllDynamic2_vc8.vcproj", "{F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}" ProjectSection(ProjectDependencies) = postProject {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} + {04D7369F-47BC-46B0-A374-41635A9656D8} = {04D7369F-47BC-46B0-A374-41635A9656D8} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleXllStatic", "Examples\xl\ExampleXllStatic_vc8.vcproj", "{687DB6AF-730F-4740-B20A-B95EA8180E8D}" ProjectSection(ProjectDependencies) = postProject {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} + {66021664-4359-442C-ACC7-7C82F51C9D5A} = {66021664-4359-442C-ACC7-7C82F51C9D5A} EndProjectSection EndProject *************** *** 23,34 **** Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ohxll", "ohxl\ohxll\ohxll_vc8.vcproj", "{04D7369F-47BC-46B0-A374-41635A9656D8}" ProjectSection(ProjectDependencies) = postProject - {88BE5568-6E55-41C5-A251-670FAFB44336} = {88BE5568-6E55-41C5-A251-670FAFB44336} {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ohxllib", "ohxl\ohxllib\ohxllib_vc8.vcproj", "{66021664-4359-442C-ACC7-7C82F51C9D5A}" ProjectSection(ProjectDependencies) = postProject - {88BE5568-6E55-41C5-A251-670FAFB44336} = {88BE5568-6E55-41C5-A251-670FAFB44336} {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} EndProjectSection EndProject --- 23,34 ---- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ohxll", "ohxl\ohxll\ohxll_vc8.vcproj", "{04D7369F-47BC-46B0-A374-41635A9656D8}" ProjectSection(ProjectDependencies) = postProject {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} + {88BE5568-6E55-41C5-A251-670FAFB44336} = {88BE5568-6E55-41C5-A251-670FAFB44336} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ohxllib", "ohxl\ohxllib\ohxllib_vc8.vcproj", "{66021664-4359-442C-ACC7-7C82F51C9D5A}" ProjectSection(ProjectDependencies) = postProject {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} = {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF} + {88BE5568-6E55-41C5-A251-670FAFB44336} = {88BE5568-6E55-41C5-A251-670FAFB44336} EndProjectSection EndProject *************** *** 53,57 **** GlobalSection(ProjectConfigurationPlatforms) = postSolution {90BF5136-C003-45AB-BB63-7AE014A07F4E}.All|Win32.ActiveCfg = Debug CRTDLL|Win32 - {90BF5136-C003-45AB-BB63-7AE014A07F4E}.All|Win32.Build.0 = Debug CRTDLL|Win32 {90BF5136-C003-45AB-BB63-7AE014A07F4E}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {90BF5136-C003-45AB-BB63-7AE014A07F4E}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 --- 53,56 ---- *************** *** 63,77 **** {90BF5136-C003-45AB-BB63-7AE014A07F4E}.Release|Win32.Build.0 = Release|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.All|Win32.ActiveCfg = Release CRTDLL|Win32 - {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.All|Win32.Build.0 = Release CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Debug|Win32.ActiveCfg = Debug CRTDLL|Win32 - {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Debug|Win32.Build.0 = Debug CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Release CRTDLL|Win32.ActiveCfg = Release CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Release CRTDLL|Win32.Build.0 = Release CRTDLL|Win32 {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Release|Win32.ActiveCfg = Release CRTDLL|Win32 - {F89760C1-CD0C-4138-A6A7-A8528A1B0D6F}.Release|Win32.Build.0 = Release CRTDLL|Win32 {687DB6AF-730F-4740-B20A-B95EA8180E8D}.All|Win32.ActiveCfg = Debug CRTDLL|Win32 - {687DB6AF-730F-4740-B20A-B95EA8180E8D}.All|Win32.Build.0 = Debug CRTDLL|Win32 {687DB6AF-730F-4740-B20A-B95EA8180E8D}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {687DB6AF-730F-4740-B20A-B95EA8180E8D}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 --- 62,72 ---- *************** *** 83,87 **** {687DB6AF-730F-4740-B20A-B95EA8180E8D}.Release|Win32.Build.0 = Release|Win32 {CD623FE5-3B3E-4511-80A9-A99D893349A4}.All|Win32.ActiveCfg = Debug CRTDLL|Win32 - {CD623FE5-3B3E-4511-80A9-A99D893349A4}.All|Win32.Build.0 = Debug CRTDLL|Win32 {CD623FE5-3B3E-4511-80A9-A99D893349A4}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {CD623FE5-3B3E-4511-80A9-A99D893349A4}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 --- 78,81 ---- *************** *** 93,107 **** {CD623FE5-3B3E-4511-80A9-A99D893349A4}.Release|Win32.Build.0 = Release|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.All|Win32.ActiveCfg = Release CRTDLL|Win32 - {04D7369F-47BC-46B0-A374-41635A9656D8}.All|Win32.Build.0 = Release CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Debug|Win32.ActiveCfg = Debug CRTDLL|Win32 - {04D7369F-47BC-46B0-A374-41635A9656D8}.Debug|Win32.Build.0 = Debug CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Release CRTDLL|Win32.ActiveCfg = Release CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Release CRTDLL|Win32.Build.0 = Release CRTDLL|Win32 {04D7369F-47BC-46B0-A374-41635A9656D8}.Release|Win32.ActiveCfg = Release CRTDLL|Win32 - {04D7369F-47BC-46B0-A374-41635A9656D8}.Release|Win32.Build.0 = Release CRTDLL|Win32 {66021664-4359-442C-ACC7-7C82F51C9D5A}.All|Win32.ActiveCfg = Debug|Win32 - {66021664-4359-442C-ACC7-7C82F51C9D5A}.All|Win32.Build.0 = Debug|Win32 {66021664-4359-442C-ACC7-7C82F51C9D5A}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {66021664-4359-442C-ACC7-7C82F51C9D5A}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 --- 87,97 ---- *************** *** 113,117 **** {66021664-4359-442C-ACC7-7C82F51C9D5A}.Release|Win32.Build.0 = Release|Win32 {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF}.All|Win32.ActiveCfg = Debug CRTDLL|Win32 - {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF}.All|Win32.Build.0 = Debug CRTDLL|Win32 {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {4BD77A1E-AAE9-47A4-81FE-2308E5A460AF}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 --- 103,106 ---- *************** *** 133,145 **** {88BE5568-6E55-41C5-A251-670FAFB44336}.Release|Win32.Build.0 = All|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.All|Win32.ActiveCfg = Release CRTDLL|Win32 - {BB902802-D59B-466F-ABB6-23368860D803}.All|Win32.Build.0 = Release CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Debug CRTDLL|Win32.ActiveCfg = Debug CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Debug CRTDLL|Win32.Build.0 = Debug CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Debug|Win32.ActiveCfg = Debug CRTDLL|Win32 - {BB902802-D59B-466F-ABB6-23368860D803}.Debug|Win32.Build.0 = Debug CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Release CRTDLL|Win32.ActiveCfg = Release CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Release CRTDLL|Win32.Build.0 = Release CRTDLL|Win32 {BB902802-D59B-466F-ABB6-23368860D803}.Release|Win32.ActiveCfg = Release CRTDLL|Win32 - {BB902802-D59B-466F-ABB6-23368860D803}.Release|Win32.Build.0 = Release CRTDLL|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution --- 122,131 ---- |
From: Ferdinando A. <na...@us...> - 2006-06-12 12:50:33
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl/ohxll In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2360/ohxl/ohxll Modified Files: ohxll_vc8.vcproj Log Message: fixed association between Solution Configuration and Project onfiguration Index: ohxll_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/ohxll/ohxll_vc8.vcproj,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ohxll_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.8 --- ohxll_vc8.vcproj 12 Jun 2006 12:50:28 -0000 1.9 *************** *** 79,83 **** LinkIncremental="2" SuppressStartupBanner="true" ! AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="true" ProgramDatabaseFile="..\..\xll/ObjectHandler-xll-vc80-mt-gd-0_1_4.pdb" --- 79,83 ---- LinkIncremental="2" SuppressStartupBanner="true" ! AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="true" ProgramDatabaseFile="..\..\xll/ObjectHandler-xll-vc80-mt-gd-0_1_4.pdb" *************** *** 177,181 **** LinkIncremental="1" SuppressStartupBanner="true" ! AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ProgramDatabaseFile="..\..\xll/ObjectHandler-xll-vc80-mt-0_1_4.pdb" ImportLibrary="..\..\xll/ObjectHandler-xll-vc80-mt-0_1_4.lib" --- 177,181 ---- LinkIncremental="1" SuppressStartupBanner="true" ! AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ProgramDatabaseFile="..\..\xll/ObjectHandler-xll-vc80-mt-0_1_4.pdb" ImportLibrary="..\..\xll/ObjectHandler-xll-vc80-mt-0_1_4.lib" |
From: Ferdinando A. <na...@us...> - 2006-06-12 12:44:22
|
Update of /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31848/msvc/static Modified Files: static_vc8.vcproj Log Message: broken CRTDLL configuration fixed Index: static_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static/static_vc8.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** static_vc8.vcproj 11 Jun 2006 18:00:22 -0000 1.3 --- static_vc8.vcproj 12 Jun 2006 12:44:18 -0000 1.4 *************** *** 72,76 **** <Tool Name="VCLibrarianTool" ! OutputFile="../Lib/Unicode_R/log4cxxs.lib" SuppressStartupBanner="true" /> --- 72,76 ---- <Tool Name="VCLibrarianTool" ! OutputFile="../lib/Unicode_R/log4cxxs.lib" SuppressStartupBanner="true" [...2545 lines suppressed...] ! Name="Debug CRTDLL|Win32" > <Tool --- 5321,5336 ---- </FileConfiguration> <FileConfiguration ! Name="Debug CRTDLL|Win32" > <Tool Name="VCCLCompilerTool" ! Optimization="0" AdditionalIncludeDirectories="" PreprocessorDefinitions="" + BasicRuntimeChecks="3" /> </FileConfiguration> <FileConfiguration ! Name="Release CRTDLL|Win32" > <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:07
|
Update of /cvsroot/objecthandler/ObjectHandler/xlsdk In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049/xlsdk Modified Files: xlsdk_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: xlsdk_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/xlsdk/xlsdk_vc8.vcproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** xlsdk_vc8.vcproj 7 Jun 2006 14:37:41 -0000 1.4 --- xlsdk_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.5 *************** *** 16,21 **** <Configuration Name="Release|Win32" ! OutputDirectory="..\build\vc80\xlsdk\Release" ! IntermediateDirectory="..\build\vc80\xlsdk\Release" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Release|Win32" ! OutputDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ! IntermediateDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 49,56 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\Release/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\Release/" ! ObjectFile="..\build\vc80\xlsdk\Release/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 49,56 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ObjectFile="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 81,85 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\Release/xlsdk.bsc" /> <Tool --- 81,85 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.bsc" /> <Tool *************** *** 92,97 **** <Configuration Name="Debug|Win32" ! OutputDirectory="..\build\vc80\xlsdk\Debug" ! IntermediateDirectory="..\build\vc80\xlsdk\Debug" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 92,97 ---- <Configuration Name="Debug|Win32" ! OutputDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ! IntermediateDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 124,131 **** RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\Debug/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\Debug/" ! ObjectFile="..\build\vc80\xlsdk\Debug/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 124,131 ---- RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ObjectFile="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 157,161 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\Debug/xlsdk.bsc" /> <Tool --- 157,161 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.bsc" /> <Tool *************** *** 168,173 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory="..\build\vc80\xlsdk\ReleaseCRTDLL" ! IntermediateDirectory="..\build\vc80\xlsdk\ReleaseCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 168,173 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ! IntermediateDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 201,208 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\ReleaseCRTDLL/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\ReleaseCRTDLL/" ! ObjectFile="..\build\vc80\xlsdk\ReleaseCRTDLL/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 201,208 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ObjectFile="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 233,237 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\ReleaseCRTDLL/xlsdk.bsc" /> <Tool --- 233,237 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.bsc" /> <Tool *************** *** 244,249 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory="..\build\vc80\xlsdk\DebugCRTDLL" ! IntermediateDirectory="..\build\vc80\xlsdk\DebugCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 244,249 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ! IntermediateDirectory="..\build\vc80\xlsdk\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 276,283 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\DebugCRTDLL/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\DebugCRTDLL/" ! ObjectFile="..\build\vc80\xlsdk\DebugCRTDLL/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 276,283 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.pch" ! AssemblerListingLocation="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ObjectFile="..\build\vc80\xlsdk\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\build\vc80\xlsdk\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 309,313 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\DebugCRTDLL/xlsdk.bsc" /> <Tool --- 309,313 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\build\vc80\xlsdk\$(ConfigurationName)/xlsdk.bsc" /> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:05
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/xl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049/Examples/xl Modified Files: ExampleXllDynamic1_vc8.vcproj ExampleXllDynamic2_vc8.vcproj ExampleXllStatic_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: ExampleXllDynamic2_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllDynamic2_vc8.vcproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ExampleXllDynamic2_vc8.vcproj 9 Jun 2006 18:58:27 -0000 1.5 --- ExampleXllDynamic2_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.6 *************** *** 16,21 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc80\DebugCRTDLL" ! IntermediateDirectory=".\buildXllDynamic2\vc80\DebugCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic2\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 42,46 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc80\DebugCRTDLL\ExampleXllDynamic2.tlb" HeaderFileName="" /> --- 42,46 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.tlb" HeaderFileName="" /> *************** *** 54,61 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc80\DebugCRTDLL\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc80\DebugCRTDLL\" ! ObjectFile=".\buildXllDynamic2\vc80\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc80\DebugCRTDLL\" WarningLevel="3" SuppressStartupBanner="true" --- 54,61 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 81,86 **** AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllDynamic2\vc80\DebugCRTDLL\ExampleXLLDynamic2-vc80-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc80\DebugCRTDLL\ExampleXLLDynamic2-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> --- 81,86 ---- AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXLLDynamic2-vc80-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXLLDynamic2-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> *************** *** 97,101 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllDynamic2\vc80\DebugCRTDLL\ExampleXllDynamic2.bsc" /> <Tool --- 97,101 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.bsc" /> <Tool *************** *** 114,119 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc80\ReleaseCRTDLL" ! IntermediateDirectory=".\buildXllDynamic2\vc80\ReleaseCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 114,119 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic2\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 140,144 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc80\ReleaseCRTDLL\ExampleXllDynamic2.tlb" HeaderFileName="" /> --- 140,144 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.tlb" HeaderFileName="" /> *************** *** 153,160 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc80\ReleaseCRTDLL\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc80\ReleaseCRTDLL\" ! ObjectFile=".\buildXllDynamic2\vc80\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc80\ReleaseCRTDLL\" WarningLevel="3" SuppressStartupBanner="true" --- 153,160 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 178,183 **** SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildXllDynamic2\vc80\ReleaseCRTDLL\ExampleXLLDynamic2-vc80-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc80\ReleaseCRTDLL\ExampleXLLDynamic2-vc80-mt-0_1_4.lib" TargetMachine="1" /> --- 178,183 ---- SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXLLDynamic2-vc80-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXLLDynamic2-vc80-mt-0_1_4.lib" TargetMachine="1" /> *************** *** 194,198 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllDynamic2\vc80\ReleaseCRTDLL\ExampleXllDynamic2.bsc" /> <Tool --- 194,198 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllDynamic2\vc80\$(ConfigurationName)\ExampleXllDynamic2.bsc" /> <Tool Index: ExampleXllDynamic1_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllDynamic1_vc8.vcproj,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ExampleXllDynamic1_vc8.vcproj 9 Jun 2006 18:58:27 -0000 1.8 --- ExampleXllDynamic1_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.9 *************** *** 18,23 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic1\vc80\DebugCRTDLL" ! IntermediateDirectory=".\buildXllDynamic1\vc80\DebugCRTDLL" ConfigurationType="2" CharacterSet="1" --- 18,23 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic1\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic1\vc80\$(ConfigurationName)" ConfigurationType="2" CharacterSet="1" *************** *** 47,53 **** RuntimeLibrary="3" UsePrecompiledHeader="0" ! AssemblerListingLocation=".\buildXllDynamic1\vc80\DebugCRTDLL\" ! ObjectFile=".\buildXllDynamic1\vc80\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic1\vc80\DebugCRTDLL\vc80.pdb" WarningLevel="3" Detect64BitPortabilityProblems="false" --- 47,53 ---- RuntimeLibrary="3" UsePrecompiledHeader="0" ! AssemblerListingLocation=".\buildXllDynamic1\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic1\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic1\vc80\$(ConfigurationName)\vc80.pdb" WarningLevel="3" Detect64BitPortabilityProblems="false" *************** *** 69,75 **** AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllDynamic1\vc80\DebugCRTDLL\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.pdb" SubSystem="2" ! ImportLibrary=".\buildXllDynamic1\vc80\DebugCRTDLL\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> --- 69,75 ---- AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllDynamic1\vc80\$(ConfigurationName)\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.pdb" SubSystem="2" ! ImportLibrary=".\buildXllDynamic1\vc80\$(ConfigurationName)\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> *************** *** 101,106 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic1\vc80\ReleaseCRTDLL" ! IntermediateDirectory=".\buildXllDynamic1\vc80\ReleaseCRTDLL" ConfigurationType="2" CharacterSet="1" --- 101,106 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic1\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic1\vc80\$(ConfigurationName)" ConfigurationType="2" CharacterSet="1" *************** *** 128,134 **** RuntimeLibrary="2" UsePrecompiledHeader="0" ! AssemblerListingLocation=".\buildXllDynamic1\vc80\ReleaseCRTDLL\" ! ObjectFile=".\buildXllDynamic1\vc80\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic1\vc80\ReleaseCRTDLL\vc80.pdb" WarningLevel="3" Detect64BitPortabilityProblems="false" --- 128,134 ---- RuntimeLibrary="2" UsePrecompiledHeader="0" ! AssemblerListingLocation=".\buildXllDynamic1\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic1\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic1\vc80\$(ConfigurationName)\vc80.pdb" WarningLevel="3" Detect64BitPortabilityProblems="false" *************** *** 150,158 **** AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="false" ! ProgramDatabaseFile=".\buildXllDynamic1\vc80\DebugCRTDLL\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.pdb" SubSystem="2" OptimizeReferences="2" EnableCOMDATFolding="2" ! ImportLibrary=".\buildXllDynamic1\vc80\ReleaseCRTDLL\ExampleXLLDynamic1-vc80-mt-0_1_4.lib" TargetMachine="1" /> --- 150,158 ---- AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="false" ! ProgramDatabaseFile=".\buildXllDynamic1\vc80\$(ConfigurationName)\ExampleXLLDynamic1-vc80-mt-gd-0_1_4.pdb" SubSystem="2" OptimizeReferences="2" EnableCOMDATFolding="2" ! ImportLibrary=".\buildXllDynamic1\vc80\$(ConfigurationName)\ExampleXLLDynamic1-vc80-mt-0_1_4.lib" TargetMachine="1" /> Index: ExampleXllStatic_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllStatic_vc8.vcproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ExampleXllStatic_vc8.vcproj 9 Jun 2006 18:58:27 -0000 1.6 --- ExampleXllStatic_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.7 *************** *** 16,21 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\buildXllStatic\vc80\Debug" ! IntermediateDirectory=".\buildXllStatic\vc80\Debug" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 42,46 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\Debug\ExampleXllStatic.tlb" HeaderFileName="" /> --- 42,46 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName="" /> *************** *** 54,61 **** RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\Debug\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\Debug\" ! ObjectFile=".\buildXllStatic\vc80\Debug\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\Debug\" WarningLevel="3" SuppressStartupBanner="true" --- 54,61 ---- RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 81,86 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllStatic\vc80\Debug\ExampleXLLStatic-vc80-mt-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\Debug\ExampleXLLStatic-vc80-mt-sgd-0_1_4.lib" TargetMachine="1" /> --- 81,86 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-sgd-0_1_4.lib" TargetMachine="1" /> *************** *** 97,101 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\Debug\ExampleXllStatic.bsc" /> <Tool --- 97,101 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.bsc" /> <Tool *************** *** 114,119 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\buildXllStatic\vc80\Release" ! IntermediateDirectory=".\buildXllStatic\vc80\Release" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 114,119 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 140,144 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\Release\ExampleXllStatic.tlb" HeaderFileName="" /> --- 140,144 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName="" /> *************** *** 153,160 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\Release\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\Release\" ! ObjectFile=".\buildXllStatic\vc80\Release\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\Release\" WarningLevel="3" SuppressStartupBanner="true" --- 153,160 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 178,183 **** SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc80\Release\ExampleXLLStatic-vc80-mt-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\Release\ExampleXLLStatic-vc80-mt-s-0_1_4.lib" TargetMachine="1" /> --- 178,183 ---- SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-s-0_1_4.lib" TargetMachine="1" /> *************** *** 194,198 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\Release\ExampleXllStatic.bsc" /> <Tool --- 194,198 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.bsc" /> <Tool *************** *** 211,216 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc80\ReleaseCRTDLL" ! IntermediateDirectory=".\buildXllStatic\vc80\ReleaseCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 211,216 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 237,241 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\ReleaseCRTDLL\ExampleXllStatic.tlb" HeaderFileName="" /> --- 237,241 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName="" /> *************** *** 250,257 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\ReleaseCRTDLL\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\ReleaseCRTDLL\" ! ObjectFile=".\buildXllStatic\vc80\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\ReleaseCRTDLL\" WarningLevel="3" SuppressStartupBanner="true" --- 250,257 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 275,280 **** SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc80\ReleaseCRTDLL\ExampleXLLStatic-vc80-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\ReleaseCRTDLL\ExampleXLLStatic-vc80-mt-0_1_4.lib" TargetMachine="1" /> --- 275,280 ---- SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-0_1_4.lib" TargetMachine="1" /> *************** *** 291,295 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\ReleaseCRTDLL\ExampleXllStatic.bsc" /> <Tool --- 291,295 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.bsc" /> <Tool *************** *** 308,313 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc80\DebugCRTDLL" ! IntermediateDirectory=".\buildXllStatic\vc80\DebugCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 308,313 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc80\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 334,338 **** SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\DebugCRTDLL\ExampleXllStatic.tlb" HeaderFileName="" /> --- 334,338 ---- SuppressStartupBanner="true" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName="" /> *************** *** 346,353 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\DebugCRTDLL\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\DebugCRTDLL\" ! ObjectFile=".\buildXllStatic\vc80\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\DebugCRTDLL\" WarningLevel="3" SuppressStartupBanner="true" --- 346,353 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc80\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc80\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="true" *************** *** 373,378 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllStatic\vc80\DebugCRTDLL\ExampleXLLStatic-vc80-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\DebugCRTDLL\ExampleXLLStatic-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> --- 373,378 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXLLStatic-vc80-mt-gd-0_1_4.lib" TargetMachine="1" /> *************** *** 389,393 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\DebugCRTDLL\ExampleXllStatic.bsc" /> <Tool --- 389,393 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\buildXllStatic\vc80\$(ConfigurationName)\ExampleXllStatic.bsc" /> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:04
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl/ohxllib In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049/ohxl/ohxllib Modified Files: ohxllib_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: ohxllib_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/ohxllib/ohxllib_vc8.vcproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ohxllib_vc8.vcproj 9 Jun 2006 18:58:28 -0000 1.6 --- ohxllib_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.7 *************** *** 16,21 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\DebugCRTDLL" ! IntermediateDirectory="..\..\build\vc80\ohxllib\DebugCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ! IntermediateDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 48,55 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\DebugCRTDLL/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\DebugCRTDLL/" ! ObjectFile="..\..\build\vc80\ohxllib\DebugCRTDLL/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 48,55 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 81,85 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\DebugCRTDLL/ohxllib.bsc" /> <Tool --- 81,85 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.bsc" /> <Tool *************** *** 92,97 **** <Configuration Name="Release|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\Release" ! IntermediateDirectory="..\..\build\vc80\ohxllib\Release" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 92,97 ---- <Configuration Name="Release|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ! IntermediateDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 125,132 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\Release/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\Release/" ! ObjectFile="..\..\build\vc80\ohxllib\Release/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 125,132 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 157,161 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\Release/ohxllib.bsc" /> <Tool --- 157,161 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.bsc" /> <Tool *************** *** 168,173 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\ReleaseCRTDLL" ! IntermediateDirectory="..\..\build\vc80\ohxllib\ReleaseCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 168,173 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ! IntermediateDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 201,208 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\ReleaseCRTDLL/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\ReleaseCRTDLL/" ! ObjectFile="..\..\build\vc80\ohxllib\ReleaseCRTDLL/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 201,208 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 233,237 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\ReleaseCRTDLL/ohxllib.bsc" /> <Tool --- 233,237 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.bsc" /> <Tool *************** *** 244,249 **** <Configuration Name="Debug|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\Debug" ! IntermediateDirectory="..\..\build\vc80\ohxllib\Debug" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 244,249 ---- <Configuration Name="Debug|Win32" ! OutputDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ! IntermediateDirectory="..\..\build\vc80\ohxllib\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 276,283 **** RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\Debug/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\Debug/" ! ObjectFile="..\..\build\vc80\ohxllib\Debug/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 276,283 ---- RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxllib\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 309,313 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\Debug/ohxllib.bsc" /> <Tool --- 309,313 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile="..\..\build\vc80\ohxllib\$(ConfigurationName)/ohxllib.bsc" /> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:04
|
Update of /cvsroot/objecthandler/ObjectHandler/ohxl/ohxll In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049/ohxl/ohxll Modified Files: ohxll_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: ohxll_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/ohxll/ohxll_vc8.vcproj,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ohxll_vc8.vcproj 9 Jun 2006 18:58:28 -0000 1.7 --- ohxll_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.8 *************** *** 17,21 **** Name="Debug CRTDLL|Win32" OutputDirectory="..\..\xll" ! IntermediateDirectory="..\..\build\vc80\ohxll\DebugCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 17,21 ---- Name="Debug CRTDLL|Win32" OutputDirectory="..\..\xll" ! IntermediateDirectory="..\..\build\vc80\ohxll\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 54,61 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxll\DebugCRTDLL/ohxll.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxll\DebugCRTDLL/" ! ObjectFile="..\..\build\vc80\ohxll\DebugCRTDLL/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxll\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 54,61 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxll\$(ConfigurationName)/ohxll.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxll\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxll\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxll\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 115,119 **** Name="Release CRTDLL|Win32" OutputDirectory="..\..\xll" ! IntermediateDirectory="..\..\build\vc80\ohxll\ReleaseCRTDLL" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 115,119 ---- Name="Release CRTDLL|Win32" OutputDirectory="..\..\xll" ! IntermediateDirectory="..\..\build\vc80\ohxll\$(ConfigurationName)" ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 153,160 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxll\ReleaseCRTDLL/ohxll.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxll\ReleaseCRTDLL/" ! ObjectFile="..\..\build\vc80\ohxll\ReleaseCRTDLL/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxll\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 153,160 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile="..\..\build\vc80\ohxll\$(ConfigurationName)/ohxll.pch" ! AssemblerListingLocation="..\..\build\vc80\ohxll\$(ConfigurationName)/" ! ObjectFile="..\..\build\vc80\ohxll\$(ConfigurationName)/" ! ProgramDataBaseFileName="..\..\build\vc80\ohxll\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:03
|
Update of /cvsroot/objecthandler/ObjectHandler In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049 Modified Files: ohlib_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: ohlib_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohlib_vc8.vcproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ohlib_vc8.vcproj 9 Jun 2006 18:58:27 -0000 1.4 --- ohlib_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.5 *************** *** 16,21 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc80\oh\Debug" ! IntermediateDirectory=".\build\vc80\oh\Debug" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc80\oh\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\oh\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 48,55 **** RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\Debug/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\Debug/" ! ObjectFile=".\build\vc80\oh\Debug/" ! ProgramDataBaseFileName=".\build\vc80\oh\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 48,55 ---- RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\oh\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\oh\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 81,85 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\Debug/ohlib.bsc" /> <Tool --- 81,85 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.bsc" /> <Tool *************** *** 92,97 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc80\oh\ReleaseCRTDLL" ! IntermediateDirectory=".\build\vc80\oh\ReleaseCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 92,97 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc80\oh\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\oh\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 125,132 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\ReleaseCRTDLL/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\ReleaseCRTDLL/" ! ObjectFile=".\build\vc80\oh\ReleaseCRTDLL/" ! ProgramDataBaseFileName=".\build\vc80\oh\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 125,132 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\oh\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\oh\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 157,161 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\ReleaseCRTDLL/ohlib.bsc" /> <Tool --- 157,161 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.bsc" /> <Tool *************** *** 168,173 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc80\oh\Release" ! IntermediateDirectory=".\build\vc80\oh\Release" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 168,173 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc80\oh\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\oh\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 201,208 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\Release/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\Release/" ! ObjectFile=".\build\vc80\oh\Release/" ! ProgramDataBaseFileName=".\build\vc80\oh\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 201,208 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\oh\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\oh\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 233,237 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\Release/ohlib.bsc" /> <Tool --- 233,237 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.bsc" /> <Tool *************** *** 244,249 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc80\oh\DebugCRTDLL" ! IntermediateDirectory=".\build\vc80\oh\DebugCRTDLL" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 244,249 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc80\oh\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\oh\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 276,283 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\DebugCRTDLL/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\DebugCRTDLL/" ! ObjectFile=".\build\vc80\oh\DebugCRTDLL/" ! ProgramDataBaseFileName=".\build\vc80\oh\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 276,283 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc80\oh\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\oh\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\oh\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 309,313 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\DebugCRTDLL/ohlib.bsc" /> <Tool --- 309,313 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\oh\$(ConfigurationName)/ohlib.bsc" /> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:14:03
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/C++ In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11049/Examples/C++ Modified Files: ExampleCpp_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: ExampleCpp_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/C++/ExampleCpp_vc8.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExampleCpp_vc8.vcproj 1 Jun 2006 13:28:49 -0000 1.3 --- ExampleCpp_vc8.vcproj 11 Jun 2006 18:14:00 -0000 1.4 *************** *** 16,21 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc80\ReleaseCRTDLL" ! IntermediateDirectory=".\build\vc80\ReleaseCRTDLL" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 16,21 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 38,42 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\ReleaseCRTDLL/ExampleCpp.tlb" HeaderFileName="" /> --- 38,42 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName="" /> *************** *** 51,58 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\ReleaseCRTDLL/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\ReleaseCRTDLL/" ! ObjectFile=".\build\vc80\ReleaseCRTDLL/" ! ProgramDataBaseFileName=".\build\vc80\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 51,58 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 76,80 **** SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc80\ReleaseCRTDLL/ExampleCpp-vc80-mt-0_3_12.pdb" SubSystem="1" TargetMachine="1" --- 76,80 ---- SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc80\$(ConfigurationName)/ExampleCpp-vc80-mt-0_3_12.pdb" SubSystem="1" TargetMachine="1" *************** *** 92,96 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\ReleaseCRTDLL/ExampleCpp.bsc" /> <Tool --- 92,96 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.bsc" /> <Tool *************** *** 109,114 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc80\Debug" ! IntermediateDirectory=".\build\vc80\Debug" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 109,114 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 131,135 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\Debug/ExampleCpp.tlb" HeaderFileName="" /> --- 131,135 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName="" /> *************** *** 143,150 **** RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\Debug/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\Debug/" ! ObjectFile=".\build\vc80\Debug/" ! ProgramDataBaseFileName=".\build\vc80\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 143,150 ---- RuntimeLibrary="1" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 170,174 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\build\vc80\Debug/ExampleCpp-vc80-mt-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1" --- 170,174 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\build\vc80\$(ConfigurationName)/ExampleCpp-vc80-mt-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1" *************** *** 186,190 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\Debug/ExampleCpp.bsc" /> <Tool --- 186,190 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.bsc" /> <Tool *************** *** 203,208 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc80\Release" ! IntermediateDirectory=".\build\vc80\Release" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 203,208 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 225,229 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\Release/ExampleCpp.tlb" HeaderFileName="" /> --- 225,229 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName="" /> *************** *** 238,245 **** EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\Release/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\Release/" ! ObjectFile=".\build\vc80\Release/" ! ProgramDataBaseFileName=".\build\vc80\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 238,245 ---- EnableFunctionLevelLinking="true" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 263,267 **** SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc80\Release/ExampleCpp-vc80-mt-s-0_3_12.pdb" SubSystem="1" TargetMachine="1" --- 263,267 ---- SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc80\$(ConfigurationName)/ExampleCpp-vc80-mt-s-0_3_12.pdb" SubSystem="1" TargetMachine="1" *************** *** 279,283 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\Release/ExampleCpp.bsc" /> <Tool --- 279,283 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.bsc" /> <Tool *************** *** 296,301 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc80\DebugCRTDLL" ! IntermediateDirectory=".\build\vc80\DebugCRTDLL" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" --- 296,301 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" *************** *** 318,322 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\DebugCRTDLL/ExampleCpp.tlb" HeaderFileName="" /> --- 318,322 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc80\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName="" /> *************** *** 330,337 **** RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\DebugCRTDLL/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\DebugCRTDLL/" ! ObjectFile=".\build\vc80\DebugCRTDLL/" ! ProgramDataBaseFileName=".\build\vc80\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 330,337 ---- RuntimeLibrary="3" RuntimeTypeInfo="true" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 357,361 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\build\vc80\DebugCRTDLL/ExampleCpp-vc80-mt-gd-0_3_12.pdb" SubSystem="1" TargetMachine="1" --- 357,361 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="true" ! ProgramDatabaseFile=".\build\vc80\$(ConfigurationName)/ExampleCpp-vc80-mt-gd-0_3_12.pdb" SubSystem="1" TargetMachine="1" *************** *** 373,377 **** Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\DebugCRTDLL/ExampleCpp.bsc" /> <Tool --- 373,377 ---- Name="VCBscMakeTool" SuppressStartupBanner="true" ! OutputFile=".\build\vc80\$(ConfigurationName)/ExampleCpp.bsc" /> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:13:01
|
Update of /cvsroot/objecthandler/log4cxx-0.9.7/msvc/simplesocketserver In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10610 Modified Files: simplesocketserver_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: simplesocketserver_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/log4cxx-0.9.7/msvc/simplesocketserver/simplesocketserver_vc8.vcproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** simplesocketserver_vc8.vcproj 25 May 2006 11:41:33 -0000 1.1 --- simplesocketserver_vc8.vcproj 11 Jun 2006 18:12:57 -0000 1.2 *************** *** 108,113 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\Release" ! IntermediateDirectory=".\Release" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 108,113 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\$(ConfigurationName)" ! IntermediateDirectory=".\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 130,134 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\Release/simplesocketserver.tlb" HeaderFileName="" /> --- 130,134 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\$(ConfigurationName)/simplesocketserver.tlb" HeaderFileName="" /> *************** *** 143,150 **** EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\Release/simplesocketserver.pch" ! AssemblerListingLocation=".\Release/" ! ObjectFile=".\Release/" ! ProgramDataBaseFileName=".\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 143,150 ---- EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\$(ConfigurationName)/simplesocketserver.pch" ! AssemblerListingLocation=".\$(ConfigurationName)/" ! ObjectFile=".\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 202,207 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\Debug" ! IntermediateDirectory=".\Debug" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 202,207 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\$(ConfigurationName)" ! IntermediateDirectory=".\$(ConfigurationName)" ConfigurationType="1" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 224,228 **** <Tool Name="VCMIDLTool" ! TypeLibraryName=".\Debug/simplesocketserver.tlb" HeaderFileName="" /> --- 224,228 ---- <Tool Name="VCMIDLTool" ! TypeLibraryName=".\$(ConfigurationName)/simplesocketserver.tlb" HeaderFileName="" /> *************** *** 235,242 **** RuntimeLibrary="3" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\Debug/simplesocketserver.pch" ! AssemblerListingLocation=".\Debug/" ! ObjectFile=".\Debug/" ! ProgramDataBaseFileName=".\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 235,242 ---- RuntimeLibrary="3" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\$(ConfigurationName)/simplesocketserver.pch" ! AssemblerListingLocation=".\$(ConfigurationName)/" ! ObjectFile=".\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" |
From: Ferdinando A. <na...@us...> - 2006-06-11 18:00:26
|
Update of /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5081 Modified Files: static_vc8.vcproj Log Message: adopting vc80\$(ConfigurationName) in *_vc8.proj files Index: static_vc8.vcproj =================================================================== RCS file: /cvsroot/objecthandler/log4cxx-0.9.7/msvc/static/static_vc8.vcproj,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** static_vc8.vcproj 25 May 2006 16:02:15 -0000 1.2 --- static_vc8.vcproj 11 Jun 2006 18:00:22 -0000 1.3 *************** *** 17,22 **** <Configuration Name="Unicode Release|Win32" ! OutputDirectory=".\Unicode_R" ! IntermediateDirectory=".\Unicode_R" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 17,22 ---- <Configuration Name="Unicode Release|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 50,57 **** EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\Unicode_R/static.pch" ! AssemblerListingLocation=".\Unicode_R/" ! ObjectFile=".\Unicode_R/" ! ProgramDataBaseFileName=".\Unicode_R/" WarningLevel="3" SuppressStartupBanner="true" --- 50,57 ---- EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 93,98 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\Debug" ! IntermediateDirectory=".\Debug" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 93,98 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 124,131 **** RuntimeLibrary="1" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\vc80\Debug/static.pch" ! AssemblerListingLocation=".\vc80\Debug/" ! ObjectFile=".\vc80\Debug/" ! ProgramDataBaseFileName=".\vc80\Debug/" WarningLevel="3" SuppressStartupBanner="true" --- 124,131 ---- RuntimeLibrary="1" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 167,172 **** <Configuration Name="Unicode Debug|Win32" ! OutputDirectory=".\Unicode_D" ! IntermediateDirectory=".\Unicode_D" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 167,172 ---- <Configuration Name="Unicode Debug|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 198,205 **** RuntimeLibrary="1" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\Unicode_D/static.pch" ! AssemblerListingLocation=".\Unicode_D/" ! ObjectFile=".\Unicode_D/" ! ProgramDataBaseFileName=".\Unicode_D/" WarningLevel="3" SuppressStartupBanner="true" --- 198,205 ---- RuntimeLibrary="1" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 241,246 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\Release" ! IntermediateDirectory=".\Release" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 241,246 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 274,281 **** EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\vc80\Release/static.pch" ! AssemblerListingLocation=".\vc80\Release/" ! ObjectFile=".\vc80\Release/" ! ProgramDataBaseFileName=".\vc80\Release/" WarningLevel="3" SuppressStartupBanner="true" --- 274,281 ---- EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" *************** *** 317,322 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory="$(ConfigurationName)" ! IntermediateDirectory="$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 317,322 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 350,357 **** EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\ReleaseCRTDLL/static.pch" ! AssemblerListingLocation=".\vc80\ReleaseCRTDLL/" ! ObjectFile=".\vc80\ReleaseCRTDLL/" ! ProgramDataBaseFileName=".\vc80\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 350,357 ---- EnableFunctionLevelLinking="true" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)" ! ObjectFile=".\build\vc80\$(ConfigurationName)" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)" WarningLevel="3" SuppressStartupBanner="true" *************** *** 393,398 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory="$(ConfigurationName)" ! IntermediateDirectory="$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" --- 393,398 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc80\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc80\$(ConfigurationName)" ConfigurationType="4" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" *************** *** 424,431 **** RuntimeLibrary="3" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\vc80\DebugCRTDLL/static.pch" ! AssemblerListingLocation=".\vc80\DebugCRTDLL/" ! ObjectFile=".\vc80\DebugCRTDLL/" ! ProgramDataBaseFileName=".\vc80\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="true" --- 424,431 ---- RuntimeLibrary="3" UsePrecompiledHeader="0" ! PrecompiledHeaderFile=".\build\vc80\$(ConfigurationName)/static.pch" ! AssemblerListingLocation=".\build\vc80\$(ConfigurationName)/" ! ObjectFile=".\build\vc80\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc80\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="true" |
From: Ferdinando A. <na...@us...> - 2006-06-11 13:28:46
|
Update of /cvsroot/objecthandler/ObjectHandler In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13977 Modified Files: ohlib.vcproj Log Message: adopting vc71\$(ConfigurationName) in proj files Index: ohlib.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohlib.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ohlib.vcproj 9 Jun 2006 18:58:27 -0000 1.3 --- ohlib.vcproj 11 Jun 2006 13:28:36 -0000 1.4 *************** *** 28,35 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\DebugST/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\DebugST/" ! ObjectFile=".\build\vc71\DebugST/" ! ProgramDataBaseFileName=".\build\vc71\DebugST/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 28,35 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 134,141 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\ReleaseST/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\ReleaseST/" ! ObjectFile=".\build\vc71\ReleaseST/" ! ProgramDataBaseFileName=".\build\vc71\ReleaseST/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 134,141 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 187,194 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\ReleaseCRTDLL/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\ReleaseCRTDLL/" ! ObjectFile=".\build\vc71\ReleaseCRTDLL/" ! ProgramDataBaseFileName=".\build\vc71\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 187,194 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 240,247 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\Release/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\Release/" ! ObjectFile=".\build\vc71\Release/" ! ProgramDataBaseFileName=".\build\vc71\Release/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 240,247 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 291,298 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\DebugCRTDLL/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\DebugCRTDLL/" ! ObjectFile=".\build\vc71\DebugCRTDLL/" ! ProgramDataBaseFileName=".\build\vc71\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 291,298 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ohlib.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" |
From: Ferdinando A. <na...@us...> - 2006-06-11 13:28:40
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/xl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13977/Examples/xl Modified Files: ExampleXllDynamic1.vcproj ExampleXllDynamic2.vcproj ExampleXllStatic.vcproj Log Message: adopting vc71\$(ConfigurationName) in proj files Index: ExampleXllDynamic2.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllDynamic2.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExampleXllDynamic2.vcproj 9 Jun 2006 18:58:27 -0000 1.3 --- ExampleXllDynamic2.vcproj 11 Jun 2006 13:28:36 -0000 1.4 *************** *** 13,18 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc71\DebugCRTDLL" ! IntermediateDirectory=".\buildXllDynamic2\vc71\DebugCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 13,18 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic2\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 28,35 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc71\DebugCRTDLL\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc71\DebugCRTDLL\" ! ObjectFile=".\buildXllDynamic2\vc71\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc71\DebugCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 28,35 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 45,50 **** AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllDynamic2\vc71\DebugCRTDLL\ExampleXLLDynamic2-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc71\DebugCRTDLL\ExampleXLLDynamic2-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool --- 45,50 ---- AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXLLDynamic2-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXLLDynamic2-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 54,58 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc71\DebugCRTDLL\ExampleXllDynamic2.tlb" HeaderFileName=""/> <Tool --- 54,58 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXllDynamic2.tlb" HeaderFileName=""/> <Tool *************** *** 79,84 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc71\ReleaseCRTDLL" ! IntermediateDirectory=".\buildXllDynamic2\vc71\ReleaseCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 79,84 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllDynamic2\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllDynamic2\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 96,103 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc71\ReleaseCRTDLL\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc71\ReleaseCRTDLL\" ! ObjectFile=".\buildXllDynamic2\vc71\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc71\ReleaseCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 96,103 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXllDynamic2.pch" ! AssemblerListingLocation=".\buildXllDynamic2\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllDynamic2\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 111,116 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildXllDynamic2\vc71\ReleaseCRTDLL\ExampleXLLDynamic2-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc71\ReleaseCRTDLL\ExampleXLLDynamic2-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool --- 111,116 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXLLDynamic2-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXLLDynamic2-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 120,124 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc71\ReleaseCRTDLL\ExampleXllDynamic2.tlb" HeaderFileName=""/> <Tool --- 120,124 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllDynamic2\vc71\$(ConfigurationName)\ExampleXllDynamic2.tlb" HeaderFileName=""/> <Tool Index: ExampleXllStatic.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllStatic.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExampleXllStatic.vcproj 9 Jun 2006 18:58:27 -0000 1.3 --- ExampleXllStatic.vcproj 11 Jun 2006 13:28:36 -0000 1.4 *************** *** 13,18 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\buildXllStatic\vc71\Debug" ! IntermediateDirectory=".\buildXllStatic\vc71\Debug" ConfigurationType="2" UseOfMFC="0" --- 13,18 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 28,35 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\Debug\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\Debug\" ! ObjectFile=".\buildXllStatic\vc71\Debug\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\Debug\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 28,35 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 46,51 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\Debug\ExampleXLLStatic-vc71-mt-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\Debug\ExampleXLLStatic-vc71-mt-sgd-0_1_4.lib" TargetMachine="1"/> <Tool --- 46,51 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-sgd-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 55,59 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\Debug\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 55,59 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool *************** *** 80,85 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\buildXllStatic\vc71\Release" ! IntermediateDirectory=".\buildXllStatic\vc71\Release" ConfigurationType="2" UseOfMFC="0" --- 80,85 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 97,104 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\Release\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\Release\" ! ObjectFile=".\buildXllStatic\vc71\Release\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\Release\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 97,104 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 113,118 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\Release\ExampleXLLStatic-vc71-mt-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\Release\ExampleXLLStatic-vc71-mt-s-0_1_4.lib" TargetMachine="1"/> <Tool --- 113,118 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-s-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 122,126 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\Release\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 122,126 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool *************** *** 147,152 **** <Configuration Name="Release SingleThread|Win32" ! OutputDirectory=".\buildXllStatic\vc71\ReleaseST" ! IntermediateDirectory=".\buildXllStatic\vc71\ReleaseST" ConfigurationType="2" UseOfMFC="0" --- 147,152 ---- <Configuration Name="Release SingleThread|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 164,171 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\ReleaseST\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\ReleaseST\" ! ObjectFile=".\buildXllStatic\vc71\ReleaseST\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\ReleaseST\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 164,171 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 180,185 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\ReleaseST\ExampleXLLStatic-vc71-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\ReleaseST\ExampleXLLStatic-vc71-s-0_1_4.lib" TargetMachine="1"/> <Tool --- 180,185 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-s-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-s-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 189,193 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\ReleaseST\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 189,193 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool *************** *** 214,219 **** <Configuration Name="Debug SingleThread|Win32" ! OutputDirectory=".\buildXllStatic\vc71\DebugST" ! IntermediateDirectory=".\buildXllStatic\vc71\DebugST" ConfigurationType="2" UseOfMFC="0" --- 214,219 ---- <Configuration Name="Debug SingleThread|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 229,236 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\DebugST\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\DebugST\" ! ObjectFile=".\buildXllStatic\vc71\DebugST\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\DebugST\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 229,236 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 247,252 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\DebugST\ExampleXLLStatic-vc71-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\DebugST\ExampleXLLStatic-vc71-sgd-0_1_4.lib" TargetMachine="1"/> <Tool --- 247,252 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-sgd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-sgd-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 256,260 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\DebugST\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 256,260 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool *************** *** 281,286 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc71\ReleaseCRTDLL" ! IntermediateDirectory=".\buildXllStatic\vc71\ReleaseCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 281,286 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 298,305 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\ReleaseCRTDLL\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\ReleaseCRTDLL\" ! ObjectFile=".\buildXllStatic\vc71\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\ReleaseCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 298,305 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 314,319 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\ReleaseCRTDLL\ExampleXLLStatic-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\ReleaseCRTDLL\ExampleXLLStatic-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool --- 314,319 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 323,327 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\ReleaseCRTDLL\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 323,327 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool *************** *** 348,353 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc71\DebugCRTDLL" ! IntermediateDirectory=".\buildXllStatic\vc71\DebugCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 348,353 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildXllStatic\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 363,370 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\DebugCRTDLL\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\DebugCRTDLL\" ! ObjectFile=".\buildXllStatic\vc71\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\DebugCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 363,370 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.pch" ! AssemblerListingLocation=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildXllStatic\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildXllStatic\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 381,386 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\DebugCRTDLL\ExampleXLLStatic-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\DebugCRTDLL\ExampleXLLStatic-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool --- 381,386 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXLLStatic-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 390,394 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\DebugCRTDLL\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool --- 390,394 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildXllStatic\vc71\$(ConfigurationName)\ExampleXllStatic.tlb" HeaderFileName=""/> <Tool Index: ExampleXllDynamic1.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/ExampleXllDynamic1.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExampleXllDynamic1.vcproj 9 Jun 2006 18:58:27 -0000 1.3 --- ExampleXllDynamic1.vcproj 11 Jun 2006 13:28:36 -0000 1.4 *************** *** 13,18 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildExampleDynamic1\vc71\ReleaseCRTDLL" ! IntermediateDirectory=".\buildExampleDynamic1\vc71\ReleaseCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 13,18 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\buildExampleDynamic1\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildExampleDynamic1\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 30,37 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\ExampleXllDynamic1.pch" ! AssemblerListingLocation=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\" ! ObjectFile=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\" ! ProgramDataBaseFileName=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 30,37 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXllDynamic1.pch" ! AssemblerListingLocation=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 45,50 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\ExampleXLLDynamic1-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\ExampleXLLDynamic1-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool --- 45,50 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,..\..\xll" ! ProgramDatabaseFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXLLDynamic1-vc71-mt-0_1_4.pdb" ! ImportLibrary=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXLLDynamic1-vc71-mt-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 54,58 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildExampleDynamic1\vc71\ReleaseCRTDLL\ExampleXllDynamic1.tlb" HeaderFileName=""/> <Tool --- 54,58 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXllDynamic1.tlb" HeaderFileName=""/> <Tool *************** *** 79,84 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildExampleDynamic1\vc71\DebugCRTDLL" ! IntermediateDirectory=".\buildExampleDynamic1\vc71\DebugCRTDLL" ConfigurationType="2" UseOfMFC="0" --- 79,84 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\buildExampleDynamic1\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\buildExampleDynamic1\vc71\$(ConfigurationName)" ConfigurationType="2" UseOfMFC="0" *************** *** 94,101 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildExampleDynamic1\vc71\DebugCRTDLL\ExampleXllDynamic1.pch" ! AssemblerListingLocation=".\buildExampleDynamic1\vc71\DebugCRTDLL\" ! ObjectFile=".\buildExampleDynamic1\vc71\DebugCRTDLL\" ! ProgramDataBaseFileName=".\buildExampleDynamic1\vc71\DebugCRTDLL\" WarningLevel="3" SuppressStartupBanner="TRUE" --- 94,101 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXllDynamic1.pch" ! AssemblerListingLocation=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" ! ObjectFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" ! ProgramDataBaseFileName=".\buildExampleDynamic1\vc71\$(ConfigurationName)\" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 111,116 **** AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildExampleDynamic1\vc71\DebugCRTDLL\ExampleXLLDynamic1-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildExampleDynamic1\vc71\DebugCRTDLL\ExampleXLLDynamic1-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool --- 111,116 ---- AdditionalLibraryDirectories="..\..\lib,..\..\xll" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXLLDynamic1-vc71-mt-gd-0_1_4.pdb" ! ImportLibrary=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXLLDynamic1-vc71-mt-gd-0_1_4.lib" TargetMachine="1"/> <Tool *************** *** 120,124 **** SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildExampleDynamic1\vc71\DebugCRTDLL\ExampleXllDynamic1.tlb" HeaderFileName=""/> <Tool --- 120,124 ---- SuppressStartupBanner="TRUE" TargetEnvironment="1" ! TypeLibraryName=".\buildExampleDynamic1\vc71\$(ConfigurationName)\ExampleXllDynamic1.tlb" HeaderFileName=""/> <Tool |
From: Ferdinando A. <na...@us...> - 2006-06-11 13:28:40
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/C++ In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13977/Examples/C++ Modified Files: ExampleCpp.vcproj Log Message: adopting vc71\$(ConfigurationName) in proj files Index: ExampleCpp.vcproj =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/C++/ExampleCpp.vcproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ExampleCpp.vcproj 19 May 2006 15:12:41 -0000 1.1 --- ExampleCpp.vcproj 11 Jun 2006 13:28:36 -0000 1.2 *************** *** 13,18 **** <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc71\ReleaseCRTDLL" ! IntermediateDirectory=".\build\vc71\ReleaseCRTDLL" ConfigurationType="1" UseOfMFC="0" --- 13,18 ---- <Configuration Name="Release CRTDLL|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 30,37 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\ReleaseCRTDLL/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\ReleaseCRTDLL/" ! ObjectFile=".\build\vc71\ReleaseCRTDLL/" ! ProgramDataBaseFileName=".\build\vc71\ReleaseCRTDLL/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 30,37 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 46,55 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\ReleaseCRTDLL/ExampleCpp-vc71-mt-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\ReleaseCRTDLL/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 46,55 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-mt-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool *************** *** 76,81 **** <Configuration Name="Debug SingleThread|Win32" ! OutputDirectory=".\build\vc71\DebugST" ! IntermediateDirectory=".\build\vc71\DebugST" ConfigurationType="1" UseOfMFC="0" --- 76,81 ---- <Configuration Name="Debug SingleThread|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 91,98 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\DebugST/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\DebugST/" ! ObjectFile=".\build\vc71\DebugST/" ! ProgramDataBaseFileName=".\build\vc71\DebugST/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 91,98 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 109,118 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\DebugST/ExampleCpp-vc71-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\DebugST/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 109,118 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool *************** *** 139,144 **** <Configuration Name="Release SingleThread|Win32" ! OutputDirectory=".\build\vc71\ReleaseST" ! IntermediateDirectory=".\build\vc71\ReleaseST" ConfigurationType="1" UseOfMFC="0" --- 139,144 ---- <Configuration Name="Release SingleThread|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 156,163 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\ReleaseST/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\ReleaseST/" ! ObjectFile=".\build\vc71\ReleaseST/" ! ProgramDataBaseFileName=".\build\vc71\ReleaseST/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 156,163 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 172,181 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\ReleaseST/ExampleCpp-vc71-s-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\ReleaseST/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 172,181 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-s-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool *************** *** 202,207 **** <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc71\Debug" ! IntermediateDirectory=".\build\vc71\Debug" ConfigurationType="1" UseOfMFC="0" --- 202,207 ---- <Configuration Name="Debug|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 217,224 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\Debug/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\Debug/" ! ObjectFile=".\build\vc71\Debug/" ! ProgramDataBaseFileName=".\build\vc71\Debug/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 217,224 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 235,244 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\Debug/ExampleCpp-vc71-mt-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\Debug/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 235,244 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-mt-sgd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool *************** *** 265,270 **** <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc71\Release" ! IntermediateDirectory=".\build\vc71\Release" ConfigurationType="1" UseOfMFC="0" --- 265,270 ---- <Configuration Name="Release|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 282,289 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\Release/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\Release/" ! ObjectFile=".\build\vc71\Release/" ! ProgramDataBaseFileName=".\build\vc71\Release/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 282,289 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 298,307 **** SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\Release/ExampleCpp-vc71-mt-s-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\Release/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 298,307 ---- SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-mt-s-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool *************** *** 328,333 **** <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc71\DebugCRTDLL" ! IntermediateDirectory=".\build\vc71\DebugCRTDLL" ConfigurationType="1" UseOfMFC="0" --- 328,333 ---- <Configuration Name="Debug CRTDLL|Win32" ! OutputDirectory=".\build\vc71\$(ConfigurationName)" ! IntermediateDirectory=".\build\vc71\$(ConfigurationName)" ConfigurationType="1" UseOfMFC="0" *************** *** 343,350 **** RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\DebugCRTDLL/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\DebugCRTDLL/" ! ObjectFile=".\build\vc71\DebugCRTDLL/" ! ProgramDataBaseFileName=".\build\vc71\DebugCRTDLL/" WarningLevel="3" SuppressStartupBanner="TRUE" --- 343,350 ---- RuntimeTypeInfo="TRUE" UsePrecompiledHeader="2" ! PrecompiledHeaderFile=".\build\vc71\$(ConfigurationName)/ExampleCpp.pch" ! AssemblerListingLocation=".\build\vc71\$(ConfigurationName)/" ! ObjectFile=".\build\vc71\$(ConfigurationName)/" ! ProgramDataBaseFileName=".\build\vc71\$(ConfigurationName)/" WarningLevel="3" SuppressStartupBanner="TRUE" *************** *** 361,370 **** AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\DebugCRTDLL/ExampleCpp-vc71-mt-gd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\DebugCRTDLL/ExampleCpp.tlb" HeaderFileName=""/> <Tool --- 361,370 ---- AdditionalLibraryDirectories="..\..\lib,$(LOG4CXX_DIR)\msvc\Lib" GenerateDebugInformation="TRUE" ! ProgramDatabaseFile=".\build\vc71\$(ConfigurationName)/ExampleCpp-vc71-mt-gd-0_3_12.pdb" SubSystem="1" TargetMachine="1"/> <Tool Name="VCMIDLTool" ! TypeLibraryName=".\build\vc71\$(ConfigurationName)/ExampleCpp.tlb" HeaderFileName=""/> <Tool |
Update of /cvsroot/objecthandler/ObjectHandler/ohxl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20729/ohxl Modified Files: callingrange.cpp callingrange.hpp functioncall.cpp functioncall.hpp objecthandlerxl.cpp objecthandlerxl.hpp Added Files: objhandlerxl.hpp Log Message: - allow nesting of QL & non-QL functions - support for permanent objects Index: objecthandlerxl.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/objecthandlerxl.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** objecthandlerxl.cpp 9 Jun 2006 18:58:27 -0000 1.5 --- objecthandlerxl.cpp 11 Jun 2006 12:38:22 -0000 1.6 *************** *** 29,33 **** # undef BOOST_LIB_DIAGNOSTIC #endif - #include <iostream> #include <iomanip> #include <sstream> --- 29,32 ---- *************** *** 48,58 **** return *ret; else ! throw std::exception("Attempt to reference uninitialized ObjectHandlerXL object"); } else ! throw std::exception("Attempt to reference uninitialized ObjectHandlerXL object"); } boost::shared_ptr < CallingRange > ObjectHandlerXL::getCallingRange() { ! // XLOPERs which might need freeing in the event of an exception --- 47,57 ---- return *ret; else ! throw Exception("Attempt to reference uninitialized ObjectHandlerXL object"); } else ! throw Exception("Attempt to reference uninitialized ObjectHandlerXL object"); } boost::shared_ptr < CallingRange > ObjectHandlerXL::getCallingRange() { ! // XLOPERs which might need freeing in the event of an exception *************** *** 81,85 **** } else { callingRange = i->second; ! callingRange->update(); } } --- 80,84 ---- } else { callingRange = i->second; ! //callingRange->update(); } } *************** *** 103,107 **** void ObjectHandlerXL::resetCaller() { ! getCallingRange(); } --- 102,108 ---- void ObjectHandlerXL::resetCaller() { ! boost::shared_ptr < CallingRange > callingRange = getCallingRange(); ! if (callingRange) ! callingRange->update(); } *************** *** 115,129 **** callingRanges_[callingRange->getKey()] = callingRange; } std::string instanceNameDerived; ! if (instanceName.empty()) instanceNameDerived = generateInstanceName(); ! else instanceNameDerived = instanceName; checkName(instanceNameDerived); - callingRange->registerObject(instanceNameDerived); - std::string instanceNameCounter = ObjectHandler::storeObject(instanceNameDerived, object); return instanceNameCounter + "#" + callingRange->updateCount(); --- 116,132 ---- callingRanges_[callingRange->getKey()] = callingRange; } + callingRange->update(); std::string instanceNameDerived; ! if (instanceName.empty()) { instanceNameDerived = generateInstanceName(); ! object->setAnonymous(true); ! } else { instanceNameDerived = instanceName; + } + callingRange->registerObject(instanceNameDerived, object); checkName(instanceNameDerived); std::string instanceNameCounter = ObjectHandler::storeObject(instanceNameDerived, object); return instanceNameCounter + "#" + callingRange->updateCount(); *************** *** 161,165 **** boost::shared_ptr < CallingRange > callingRange = iter_previous->second; if (!callingRange->isValid()) { ! callingRange->clear(); callingRanges_.erase(key); } --- 164,168 ---- boost::shared_ptr < CallingRange > callingRange = iter_previous->second; if (!callingRange->isValid()) { ! callingRange->clearAll(); callingRanges_.erase(key); } *************** *** 167,173 **** } ! void ObjectHandlerXL::deleteAllObjects() { ! callingRanges_.clear(); ! ObjectHandler::deleteAllObjects(); } --- 170,177 ---- } ! void ObjectHandlerXL::deleteAllObjects(const bool &deletePermanent) { ! if (deletePermanent) ! callingRanges_.clear(); ! ObjectHandler::deleteAllObjects(deletePermanent); } Index: objecthandlerxl.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/objecthandlerxl.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** objecthandlerxl.hpp 9 Jun 2006 18:58:27 -0000 1.5 --- objecthandlerxl.hpp 11 Jun 2006 12:38:22 -0000 1.6 *************** *** 58,62 **** virtual boost::shared_ptr < Object > retrieveObjectImpl(const std::string &instanceName) const; virtual void collectGarbage(); ! virtual void deleteAllObjects(); //! Reset the calling cell. --- 58,62 ---- virtual boost::shared_ptr < Object > retrieveObjectImpl(const std::string &instanceName) const; virtual void collectGarbage(); ! virtual void deleteAllObjects(const bool &deletePermanent = false); //! Reset the calling cell. Index: callingrange.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/callingrange.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** callingrange.hpp 2 Jun 2006 13:59:05 -0000 1.2 --- callingrange.hpp 11 Jun 2006 12:38:22 -0000 1.3 *************** *** 24,27 **** --- 24,28 ---- #include <oh/object.hpp> + #include <map> namespace ObjHandler { *************** *** 35,40 **** return key_; } ! void registerObject(const std::string &instanceName); ! void clear(); void update(); std::string updateCount(); --- 36,43 ---- return key_; } ! void registerObject(const std::string &instanceName, ! boost::shared_ptr<Object> object); ! void clearAnonymous(); ! void clearAll(); void update(); std::string updateCount(); *************** *** 44,51 **** static std::string getKeyCount(); std::string key_; - std::vector < std::string > residentObjects_; bool busy_; int updateCount_; std::string getAddressString() const; }; --- 47,56 ---- static std::string getKeyCount(); std::string key_; bool busy_; int updateCount_; std::string getAddressString() const; + void setInvocationCount(); + int invocationCount_; + std::map<std::string, boost::shared_ptr<Object> > residentObjects_; }; Index: functioncall.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/functioncall.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** functioncall.cpp 8 Jun 2006 09:37:27 -0000 1.5 --- functioncall.cpp 11 Jun 2006 12:38:22 -0000 1.6 *************** *** 27,34 **** FunctionCall *FunctionCall::instance_ = 0; - // FIXME these values need to be configured at runtime - const std::string libFunctionSignature = "=ql"; - const std::string libName = "QuantLib"; - FunctionCall::FunctionCall(const std::string functionName) : functionName_(functionName), callerDimensions_(Uninitialized) { --- 27,30 ---- *************** *** 36,41 **** throw Exception("Multiple attempts to initialize global FunctionCall object"); instance_ = this; ! xCaller.xltype = 0; ! xReftext.xltype = 0; address_ = ""; } --- 32,38 ---- throw Exception("Multiple attempts to initialize global FunctionCall object"); instance_ = this; ! xCaller_.xltype = 0; ! xReftext_.xltype = 0; ! xMulti_.xltype = 0; address_ = ""; } *************** *** 43,48 **** FunctionCall::~FunctionCall() { instance_ = 0; ! if (xCaller.xltype) Excel(xlFree, 0, 1, &xCaller); ! if (xReftext.xltype) Excel(xlFree, 0, 1, &xReftext); } --- 40,46 ---- FunctionCall::~FunctionCall() { instance_ = 0; ! if (xCaller_.xltype) Excel(xlFree, 0, 1, &xCaller_); ! if (xReftext_.xltype) Excel(xlFree, 0, 1, &xReftext_); ! if (xMulti_.xltype) Excel(xlFree, 0, 1, &xMulti_); } *************** *** 55,65 **** const XLOPER *FunctionCall::getCallerReference() { ! if (!xCaller.xltype) Excel(xlfCaller, &xCaller, 0); ! return &xCaller; } const XLOPER *FunctionCall::getCallerAddress() { ! if (!xReftext.xltype) Excel(xlfReftext, &xReftext, 1, getCallerReference()); ! return &xReftext; } --- 53,68 ---- const XLOPER *FunctionCall::getCallerReference() { ! if (!xCaller_.xltype) Excel(xlfCaller, &xCaller_, 0); ! return &xCaller_; } const XLOPER *FunctionCall::getCallerAddress() { ! if (!xReftext_.xltype) Excel(xlfReftext, &xReftext_, 1, getCallerReference()); ! return &xReftext_; ! } ! ! const XLOPER *FunctionCall::getCallerArray() { ! if (!xMulti_.xltype) Excel(xlCoerce, &xMulti_, 2, getCallerReference(), TempInt(xltypeMulti)); ! return &xMulti_; } *************** *** 104,143 **** } - bool FunctionCall::outerFunction() { - - // exit if calling cell is #VALUE - //XLOPER xValue; - //Excel(xlfGetCell, &xValue, 2, TempNum(5), getCallerReference()); - //if (xValue.xltype & (xltypeErr | xltypeMissing)) { - // return false; - //} - //Excel(xlFree, 0, 1, &xValue); - - std::string formula = getFormula(); - std::string functionNameCompare = "=" + functionName_ + "("; - if (formula.substr(0, functionNameCompare.length()) == functionNameCompare) { - if (formula.find(functionName_, functionNameCompare.length()) != std::string::npos) { - std::ostringstream err; - err << "Function '" << functionName_ << "' appears in formula '" << formula - << "' as both the outermost function and as an inner function. " - << "ObjectHandler cannot handle cell formulas in which a given function " - << "is nested within itself as this circumvents garbage collection. " - << "Please split this formula into separate cells."; - throw Exception(err.str()); - } - return true; - } else { - if (formula.substr(0, libFunctionSignature.length()) != libFunctionSignature) { - std::ostringstream err; - err << "in formula '" << formula << "' - " << libName << " function '" << functionName_ - << "' is nested within a non-" << libName << " function. ObjectHandler cannot handle " - << "library functions nested within non-library functions as this circumvents garbage " - << "collection. Please split this formula into separate cells."; - throw Exception(err.str()); - } - return false; - } - } - CallerDimensions FunctionCall::getCallerDimensions() { // determine dimensions of calling range --- 107,110 ---- *************** *** 145,157 **** // this could be extended to detect scalar / matrix if (callerDimensions_ == Uninitialized) { ! const XLOPER *xRef = getCallerReference(); ! // xRef might be xltypeRef/xltypeSRef so coerce it to xltypeMulti ! XLOPER xMulti; ! Excel(xlCoerce, &xMulti, 2, xRef, TempInt(xltypeMulti)); ! if (xMulti.val.array.rows == 1 && xMulti.val.array.columns > 1) callerDimensions_ = Row; else callerDimensions_ = Column; - Excel(xlFree, 0, 1, &xMulti); } return callerDimensions_; --- 112,120 ---- // this could be extended to detect scalar / matrix if (callerDimensions_ == Uninitialized) { ! const XLOPER *xMulti = getCallerArray(); ! if (xMulti->val.array.rows == 1 && xMulti->val.array.columns > 1) callerDimensions_ = Row; else callerDimensions_ = Column; } return callerDimensions_; Index: functioncall.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/functioncall.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functioncall.hpp 8 Jun 2006 09:37:27 -0000 1.3 --- functioncall.hpp 11 Jun 2006 12:38:22 -0000 1.4 *************** *** 45,56 **** const XLOPER *getCallerReference(); const XLOPER *getCallerAddress(); const std::string &getAddressString(); const std::string &getFormula(); ! bool outerFunction(); CallerDimensions getCallerDimensions(); private: static FunctionCall *instance_; ! XLOPER xCaller; ! XLOPER xReftext; std::string address_; std::string formula_; --- 45,58 ---- const XLOPER *getCallerReference(); const XLOPER *getCallerAddress(); + const XLOPER *getCallerArray(); const std::string &getAddressString(); const std::string &getFormula(); ! //bool outerFunction(); CallerDimensions getCallerDimensions(); private: static FunctionCall *instance_; ! XLOPER xCaller_; ! XLOPER xReftext_; ! XLOPER xMulti_; std::string address_; std::string formula_; --- NEW FILE: objhandlerxl.hpp --- /* Copyright (C) 2006 Eric Ehlers This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email qua...@li... The license is also available online at http://quantlib.org/html/license.html This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. */ #ifndef oh_objhandlerxl_hpp #define oh_objhandlerxl_hpp #include <oh/objhandler.hpp> #include <ohxl/objecthandlerxl.hpp> #include <ohxl/conversions.hpp> #include <ohxl/functioncall.hpp> #include <ohxl/callingrange.hpp> #endif Index: callingrange.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/ohxl/callingrange.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** callingrange.cpp 2 Jun 2006 13:59:05 -0000 1.2 --- callingrange.cpp 11 Jun 2006 12:38:22 -0000 1.3 *************** *** 28,31 **** --- 28,34 ---- namespace ObjHandler { + // FIXME this value needs to be configured at runtime + const std::string libFunctionSignature = "ql"; + int CallingRange::keyCount_ = 0; *************** *** 61,75 **** } ! void CallingRange::clear() { ! std::vector < std::string >::const_iterator i; ! for (i = residentObjects_.begin(); i != residentObjects_.end(); i++) { ! std::string instanceName = *i; ! ObjectHandler::instance().deleteObject(instanceName); } residentObjects_.clear(); } ! void CallingRange::registerObject(const std::string &instanceName) { ! residentObjects_.push_back(instanceName); } --- 64,97 ---- } ! void CallingRange::clearAnonymous() { ! std::map<std::string, boost::shared_ptr<Object> >::const_iterator iter_current, iter_previous; ! iter_current = residentObjects_.begin(); ! while (iter_current != residentObjects_.end()) { ! iter_previous = iter_current; ! iter_current++; ! if (iter_previous->second->anonymous()) { ! ObjectHandler::instance().deleteObject(iter_previous->first); ! residentObjects_.erase(iter_previous->first); ! } } + } + + void CallingRange::clearAll() { + std::map<std::string, boost::shared_ptr<Object> >::const_iterator i; + for (i = residentObjects_.begin(); i != residentObjects_.end(); i++) + ObjectHandler::instance().deleteObject(i->first); residentObjects_.clear(); } ! void CallingRange::registerObject( ! const std::string &instanceName, ! boost::shared_ptr<Object> object) { ! std::map<std::string, boost::shared_ptr<Object> >::const_iterator i; ! i = residentObjects_.find(instanceName); ! if (i != residentObjects_.end()) { ! ObjectHandler::instance().deleteObject(i->first); ! residentObjects_.erase(i->first); ! } ! residentObjects_[instanceName] = object; } *************** *** 138,141 **** --- 160,179 ---- } + // FIXME use boost::regex here + void CallingRange::setInvocationCount() { + std::string formula = FunctionCall::instance().getFormula(); + invocationCount_ = -1; + unsigned int index = 0; + while (index < formula.length()) { + index = formula.find(libFunctionSignature, index); + if (index == std::string::npos) { + return; + } else { + invocationCount_++; + index++; + } + } + } + void CallingRange::update() { /* *************** *** 146,162 **** - final call - mark calling range as "not busy" */ ! if (FunctionCall::instance().outerFunction()) { ! if (busy_) { busy_ = false; - } else { - clear(); - } } else { ! if (busy_) { ! return; ! } else { busy_ = true; ! clear(); ! } } } --- 184,196 ---- - final call - mark calling range as "not busy" */ ! if (busy_) { ! invocationCount_--; ! if (!invocationCount_) busy_ = false; } else { ! setInvocationCount(); ! if (invocationCount_) busy_ = true; ! clearAnonymous(); } } *************** *** 173,181 **** out << "reference: " << callingRange.getAddressString() << std::endl; out << "valid: " << (callingRange.isValid() ? "TRUE" : "FALSE") << std::endl; out << "update count: " << callingRange.updateCount_ << std::endl; out << "resident objects: " << callingRange.residentObjects_.size() << std::endl; ! std::vector < std::string >::const_iterator i; for (i = callingRange.residentObjects_.begin(); i != callingRange.residentObjects_.end(); i++) ! out << " instance name: " << *i << std::endl; out << std::endl; return out; --- 207,217 ---- out << "reference: " << callingRange.getAddressString() << std::endl; out << "valid: " << (callingRange.isValid() ? "TRUE" : "FALSE") << std::endl; + out << "busy: " << (callingRange.busy_ ? "TRUE" : "FALSE") << std::endl; out << "update count: " << callingRange.updateCount_ << std::endl; + out << "invocation count: " << callingRange.invocationCount_ << std::endl; out << "resident objects: " << callingRange.residentObjects_.size() << std::endl; ! std::map<std::string, boost::shared_ptr<Object> >::const_iterator i; for (i = callingRange.residentObjects_.begin(); i != callingRange.residentObjects_.end(); i++) ! out << " instance name: " << i->first << std::endl; out << std::endl; return out; |
From: Eric E. <eri...@us...> - 2006-06-11 12:38:29
|
Update of /cvsroot/objecthandler/ObjectHandler/oh In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20729/oh Modified Files: object.hpp objecthandler.hpp Added Files: objecthandler.cpp Removed Files: objecthandlerbase.cpp objecthandlerbase.hpp Log Message: - allow nesting of QL & non-QL functions - support for permanent objects --- objecthandlerbase.cpp DELETED --- Index: object.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/oh/object.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** object.hpp 9 Jun 2006 18:58:27 -0000 1.5 --- object.hpp 11 Jun 2006 12:38:21 -0000 1.6 *************** *** 56,60 **** ObjectHandler::instance().storeObject(instanceName, object); */ ! Object() {}; //! Default destructor. --- 56,60 ---- ObjectHandler::instance().storeObject(instanceName, object); */ ! Object() : anonymous_(false) {}; //! Default destructor. *************** *** 82,89 **** --- 82,105 ---- mProps = p; } + + const bool &anonymous() { + return anonymous_; + } + void setAnonymous(const bool &anonymous) { + anonymous_ = anonymous; + } + + const bool &permanent() { + return permanent_; + } + void setPermanent(const bool &permanent) { + permanent_ = permanent; + } private: boost::shared_ptr<ValueObject> mProps; Object& operator= (const Object&); Object(const Object&); + bool anonymous_; + bool permanent_; }; --- objecthandlerbase.hpp DELETED --- Index: objecthandler.hpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/oh/objecthandler.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** objecthandler.hpp 9 Jun 2006 18:58:27 -0000 1.4 --- objecthandler.hpp 11 Jun 2006 12:38:21 -0000 1.5 *************** *** 53,57 **** /*! Throws exception if no Object exists with that instance name. */ ! virtual boost::shared_ptr < Object > retrieveObjectImpl(const std::string &instanceName) const; template < typename T > --- 53,57 ---- /*! Throws exception if no Object exists with that instance name. */ ! virtual boost::shared_ptr<Object> retrieveObjectImpl(const std::string &instanceName) const; template < typename T > *************** *** 80,84 **** /*! Does nothing if repository is already empty. */ ! virtual void deleteAllObjects(); //@} --- 80,84 ---- /*! Does nothing if repository is already empty. */ ! virtual void deleteAllObjects(const bool &deletePermanent = false); //@} *************** *** 102,106 **** protected: static ObjectHandler *instance_; ! void checkName(const std::string &instanceNameDerived); }; --- 102,106 ---- protected: static ObjectHandler *instance_; ! void checkName(const std::string &instanceName); }; --- NEW FILE: objecthandler.cpp --- /* Copyright (C) 2005 Ferdinando Ametrano Copyright (C) 2004, 2005, 2006 Eric Ehlers This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email qua...@li... The license is also available online at http://quantlib.org/html/license.html This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. */ #if defined(HAVE_CONFIG_H) // Dynamically created by configure #include <oh/config.hpp> #endif #include <oh/objecthandler.hpp> #include <oh/exception.hpp> #include <ostream> #include <sstream> #include <boost/regex.hpp> #include <algorithm> namespace ObjHandler { ObjectHandler *ObjectHandler::instance_; // std::map cannot be exported across DLL boundaries // so instead we use a static variable std::map<std::string, boost::shared_ptr<Object> > repository_; ObjectHandler::ObjectHandler() { instance_ = this; } ObjectHandler::~ObjectHandler() { instance_ = 0; } ObjectHandler &ObjectHandler::instance() { if (instance_) { return *instance_; } else throw Exception("Attempt to reference uninitialized ObjectHandler object"); } std::string ObjectHandler::storeObject(const std::string &instanceName, const boost::shared_ptr<Object> &object) { repository_[instanceName] = object; return instanceName; } boost::shared_ptr<Object> ObjectHandler::retrieveObjectImpl(const std::string &instanceName) const { std::map<std::string, boost::shared_ptr<Object> >::const_iterator result = repository_.find(instanceName); if (result == repository_.end()) { std::ostringstream msg; msg << "ObjectHandler error: attempt to retrieve object " << "with unknown instance name '" << instanceName << "'"; throw Exception(msg.str()); } else return result->second; } void ObjectHandler::deleteObject(const std::string &instanceName) { repository_.erase(instanceName); } void ObjectHandler::deleteAllObjects(const bool &deletePermanent) { if (deletePermanent) { repository_.clear(); } else { std::map < std::string, boost::shared_ptr < Object > >::const_iterator iter_current, iter_previous; iter_current = repository_.begin(); while (iter_current != repository_.end()) { iter_previous = iter_current; iter_current++; std::string key = iter_previous->first; boost::shared_ptr < Object > object = iter_previous->second; if (!object->permanent()) { repository_.erase(key); } } } } void ObjectHandler::dump(std::ostream& out) { out << "dump of all objects in ObjectHandler:" << std::endl << std::endl; for (std::map<std::string, boost::shared_ptr<Object> >::const_iterator i=repository_.begin(); i!=repository_.end(); i++) { boost::shared_ptr<Object> object = i->second; out << "Object with instanceName = " << i->first << ":" << std::endl << *object.get(); } } const int ObjectHandler::objectCount() { return repository_.size(); } const std::vector < std::string > ObjectHandler::listInstanceNames(const std::string regex) { std::vector < std::string > instanceNames; if (regex.empty()) { for (std::map<std::string, boost::shared_ptr<Object> >::const_iterator i=repository_.begin(); i!=repository_.end(); i++) instanceNames.push_back(i->first); } else { boost::regex r(regex); for (std::map<std::string, boost::shared_ptr<Object> >::const_iterator i=repository_.begin(); i!=repository_.end(); i++) { std::string instanceName = i->first; if (regex_match(instanceName, r)) instanceNames.push_back(instanceName); } } std::sort(instanceNames.begin(), instanceNames.end()); return instanceNames; } void ObjectHandler::checkName(const std::string &instanceName) { std::map<std::string, boost::shared_ptr<Object> >::const_iterator result = repository_.find(instanceName); if (result != repository_.end()) { std::ostringstream msg; msg << "ObjectHandler error: cannot create object " "with instance name '" << instanceName << "' because an object with that name already exists"; throw Exception(msg.str()); } } } |
From: Eric E. <eri...@us...> - 2006-06-11 12:38:25
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/xl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20729/Examples/xl Modified Files: addinstatic.cpp Log Message: - allow nesting of QL & non-QL functions - support for permanent objects Index: addinstatic.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/xl/addinstatic.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** addinstatic.cpp 9 Jun 2006 18:58:27 -0000 1.7 --- addinstatic.cpp 11 Jun 2006 12:38:21 -0000 1.8 *************** *** 43,47 **** Excel(xlfRegister, 0, 7, &xDll, TempStrNoSize("\x0D""createAccount"), // function code name ! TempStrNoSize("\x05""CCNC#"), // parameter codes TempStrNoSize("\x0D""createAccount"), // function display name TempStrNoSize("\x26""instanceName,accountNumber,accountType"), // comma-delimited list of parameters --- 43,47 ---- Excel(xlfRegister, 0, 7, &xDll, TempStrNoSize("\x0D""createAccount"), // function code name ! TempStrNoSize("\x06""CCNCP#"), // parameter codes TempStrNoSize("\x0D""createAccount"), // function display name TempStrNoSize("\x26""instanceName,accountNumber,accountType"), // comma-delimited list of parameters *************** *** 82,90 **** char *instanceName, long *accountNumber, ! char *accountType) { boost::shared_ptr < ObjHandler::FunctionCall > functionCall; try { functionCall = boost::shared_ptr < ObjHandler::FunctionCall > ( new ObjHandler::FunctionCall("createAccount") ); boost::shared_ptr < ObjHandler::Object > objectPointer(new AccountObject( *accountNumber, --- 82,95 ---- char *instanceName, long *accountNumber, ! char *accountType, ! OPER *permanent) { boost::shared_ptr < ObjHandler::FunctionCall > functionCall; try { functionCall = boost::shared_ptr < ObjHandler::FunctionCall > ( new ObjHandler::FunctionCall("createAccount") ); + + bool permanentCpp; + ObjHandler::operToScalar( permanentCpp, *permanent, false ); + boost::shared_ptr < ObjHandler::Object > objectPointer(new AccountObject( *accountNumber, *************** *** 93,96 **** --- 98,102 ---- boost::shared_ptr<ObjHandler::ValueObject>( new AccountValueObject(instanceName, *accountNumber, accountType))); + objectPointer->setPermanent(permanentCpp); const std::string returnValue = |
From: Eric E. <eri...@us...> - 2006-06-11 12:38:25
|
Update of /cvsroot/objecthandler/ObjectHandler/gensrc/metadata In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20729/gensrc/metadata Modified Files: functions.xml Log Message: - allow nesting of QL & non-QL functions - support for permanent objects Index: functions.xml =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/gensrc/metadata/functions.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions.xml 9 Jun 2006 18:58:27 -0000 1.2 --- functions.xml 11 Jun 2006 12:38:21 -0000 1.3 *************** *** 124,128 **** <functionCategory>ObjectHandler</functionCategory> <ParameterList> ! <Parameters/> </ParameterList> <ReturnValue> --- 124,134 ---- <functionCategory>ObjectHandler</functionCategory> <ParameterList> ! <Parameters> ! <Parameter name='permanent' default='false'> ! <type>bool</type> ! <tensorRank>scalar</tensorRank> ! <description>permanent</description> ! </Parameter> ! </Parameters> </ParameterList> <ReturnValue> |