From: <sv...@ww...> - 2005-08-27 20:24:21
|
Author: mkrose Date: 2005-08-27 13:24:14 -0700 (Sat, 27 Aug 2005) New Revision: 1607 Modified: trunk/CSP/SimData/CHANGES.current trunk/CSP/SimData/VisualStudio2003/SimData.vcproj Log: Change debug build target to _cSimData.dll instead of _cSimDatad.dll. The latter cannot be imported into python since the module name is declared as "_cSimData". Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1607 Modified: trunk/CSP/SimData/CHANGES.current =================================================================== --- trunk/CSP/SimData/CHANGES.current 2005-08-27 20:02:16 UTC (rev 1606) +++ trunk/CSP/SimData/CHANGES.current 2005-08-27 20:24:14 UTC (rev 1607) @@ -5,6 +5,10 @@ * Extend warning pragma to MSVC Express 8, and disable 'deprecated' function warning. + * Change debug build target to _cSimData.dll instead of _cSimDatad.dll. + The latter cannot be imported into python since the module name is + declared as "_cSimData". + 2005-08-26: onsight * Minor comment cleanups and api tweaks. Fix Quat parsing from XML. Fix data archive globbing. Modified: trunk/CSP/SimData/VisualStudio2003/SimData.vcproj =================================================================== --- trunk/CSP/SimData/VisualStudio2003/SimData.vcproj 2005-08-27 20:02:16 UTC (rev 1606) +++ trunk/CSP/SimData/VisualStudio2003/SimData.vcproj 2005-08-27 20:24:14 UTC (rev 1607) @@ -130,13 +130,13 @@ Name="VCLinkerTool" AdditionalOptions="/MACHINE:I386" AdditionalDependencies="pthreadVC1.lib" - OutputFile="../SimData/_cSimDatad.dll" + OutputFile="../SimData/_cSimData.dll" LinkIncremental="2" SuppressStartupBanner="TRUE" AdditionalLibraryDirectories="$(PYTHON_PATH)/Libs" GenerateDebugInformation="TRUE" - ProgramDatabaseFile=".\Debug/_cSimDatad.pdb" - ImportLibrary="../SimData/_cSimDatad.lib"/> + ProgramDatabaseFile=".\Debug/_cSimData.pdb" + ImportLibrary="../SimData/_cSimData.lib"/> <Tool Name="VCMIDLTool" PreprocessorDefinitions="_DEBUG" |