Changeset 20410
- Timestamp:
- 06/30/07 10:12:14 (1 year ago)
- Files:
-
- PyJuggler/branches/1.2/examples/cxx/PyAppLoader/Makefile.in (modified) (2 diffs)
- PyJuggler/branches/1.2/examples/cxx/PyAppLoader/pyAppLoader.vcproj (modified) (4 diffs)
- PyJuggler/branches/1.2/examples/cxx/PyExtApp/Makefile.in (modified) (2 diffs)
- PyJuggler/branches/1.2/examples/cxx/PyExtApp/extApp.vcproj (modified) (4 diffs)
- PyJuggler/branches/1.2/pyjutil/Makefile.in (modified) (2 diffs)
- PyJuggler/branches/1.2/src/common-targets.mk.in (modified) (2 diffs)
- PyJuggler/branches/1.2/vc7/cluster/cluster.vcproj (modified) (1 diff)
- PyJuggler/branches/1.2/vc7/gadget/gadget.vcproj (modified) (1 diff)
- PyJuggler/branches/1.2/vc7/jccl/jccl.vcproj (modified) (1 diff)
- PyJuggler/branches/1.2/vc7/opensgapp/opensgapp.vcproj (modified) (2 diffs)
- PyJuggler/branches/1.2/vc7/osgapp/osgapp.vcproj (modified) (2 diffs)
- PyJuggler/branches/1.2/vc7/pyjutil/pyjutil.vcproj (modified) (1 diff)
- PyJuggler/branches/1.2/vc7/snx/snx.vcproj (modified) (2 diffs)
- PyJuggler/branches/1.2/vc7/vpr/vpr.vcproj (modified) (2 diffs)
- PyJuggler/branches/1.2/vc7/vrj/vrj.vcproj (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PyJuggler/branches/1.2/examples/cxx/PyAppLoader/Makefile.in
r19730 r20410 10 10 CXXFLAGS= $(shell flagpoll vrjuggler --cflags) /Zm800 /GX /GR /Op \ 11 11 /I$(srcdir) /Zc:wchar_t,forScope $(CXXFLAGS_OPT) 12 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /D _DEBUG13 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /D _OPT /DNDEBUG12 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /DPYJUGGLER_DEBUG /DJUGGLER_DEBUG 13 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /DPYJUGGLER_OPT /DJUGGLER_OPT /DNDEBUG 14 14 LDFLAGS_DBG= /DEBUG 15 15 LDFLAGS_OPT= /RELEASE … … 18 18 CXXFLAGS= $(shell flagpoll vrjuggler --cflags) -I$(srcdir) \ 19 19 $(CXXFLAGS_OPT) 20 CXXFLAGS_DBG=-D _DEBUG -g21 CXXFLAGS_OPT=-D _OPT -DNDEBUG -O220 CXXFLAGS_DBG=-DPYJUGGLER_DEBUG -DJUGGLER_DEBUG -g 21 CXXFLAGS_OPT=-DPYJUGGLER_OPT -DJUGGLER_OPT -DNDEBUG -O2 22 22 LDFLAGS_DBG= -g 23 23 LDFLAGS_OPT= -O2 PyJuggler/branches/1.2/examples/cxx/PyAppLoader/pyAppLoader.vcproj
r14908 r20410 24 24 Optimization="0" 25 25 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 26 PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32" 26 PreprocessorDefinitions="PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;WIN32" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 RuntimeTypeInfo="TRUE" 30 UsePrecompiledHeader="0" 31 PrecompiledHeaderFile="" 32 AssemblerListingLocation="" 33 ObjectFile="$(IntDir)/" 34 ProgramDataBaseFileName="$(IntDir)/" 35 WarningLevel="3" 36 DebugInformationFormat="4" 37 CompileAs="2" 38 DisableSpecificWarnings="4005;4244;4251;4275;4290"/> 39 <Tool 40 Name="VCCustomBuildTool"/> 41 <Tool 42 Name="VCLinkerTool" 43 AdditionalOptions="/MACHINE:I386" 44 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 45 OutputFile="$(OutDir)/pyAppLoader.exe" 46 LinkIncremental="2" 47 SuppressStartupBanner="TRUE" 48 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";"$(VJ_DEPS_DIR)\lib";"$(VJ_BASE_DIR)\lib"" 49 GenerateDebugInformation="FALSE" 50 ProgramDatabaseFile="$(OutDir)/pyAppLoader.pdb" 51 SubSystem="1" 52 TargetMachine="1"/> 53 <Tool 54 Name="VCMIDLTool" 55 TypeLibraryName="$(OutDir)/pyAppLoader.tlb"/> 56 <Tool 57 Name="VCPostBuildEventTool"/> 58 <Tool 59 Name="VCPreBuildEventTool"/> 60 <Tool 61 Name="VCPreLinkEventTool"/> 62 <Tool 63 Name="VCResourceCompilerTool" 64 PreprocessorDefinitions="_DEBUG" 65 Culture="1033"/> 66 <Tool 67 Name="VCWebServiceProxyGeneratorTool"/> 68 <Tool 69 Name="VCXMLDataGeneratorTool"/> 70 <Tool 71 Name="VCWebDeploymentTool"/> 72 <Tool 73 Name="VCManagedWrapperGeneratorTool"/> 74 <Tool 75 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 76 </Configuration> 77 <Configuration 78 Name="DebugRt|Win32" 79 OutputDirectory="Debug" 80 IntermediateDirectory="Debug" 81 ConfigurationType="1" 82 UseOfMFC="0" 83 ATLMinimizesCRunTimeLibraryUsage="FALSE"> 84 <Tool 85 Name="VCCLCompilerTool" 86 AdditionalOptions="/Zm800" 87 Optimization="0" 88 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 89 PreprocessorDefinitions="PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;WIN32" 27 90 BasicRuntimeChecks="3" 28 91 RuntimeLibrary="3" … … 43 106 Name="VCLinkerTool" 44 107 AdditionalOptions="/MACHINE:I386" 45 AdditionalDependencies=" vrj_d.lib vrj_ogl_d.lib gadget_d.lib jccl_d.lib vpr_d.liblibnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-gd-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)"108 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-gd-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 46 109 OutputFile="$(OutDir)/pyAppLoader.exe" 47 110 LinkIncremental="2" … … 88 151 OmitFramePointers="FALSE" 89 152 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 90 PreprocessorDefinitions=" _OPT;NDEBUG;_CONSOLE;WIN32"153 PreprocessorDefinitions="PYJUGGLER_OPT;PYJUGGLER_OPT;NDEBUG;_CONSOLE;WIN32" 91 154 StringPooling="TRUE" 92 155 RuntimeLibrary="2" … … 108 171 Name="VCLinkerTool" 109 172 AdditionalOptions="/MACHINE:I386" 110 AdditionalDependencies=" vrj.lib vrj_ogl.lib gadget.lib jccl.lib vpr.liblibnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)"173 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 111 174 OutputFile="$(OutDir)/pyAppLoader.exe" 112 175 LinkIncremental="1" PyJuggler/branches/1.2/examples/cxx/PyExtApp/Makefile.in
r19730 r20410 13 13 /I$(srcdir) /I$(top_srcdir) /Zc:wchar_t,forScope \ 14 14 $(CXXFLAGS_OPT) 15 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /D _DEBUG16 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /D _OPT /DNDEBUG15 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /DPYJUGGLER_DEBUG /DJUGGLER_DEBUG 16 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /DPYJUGGLER_OPT /DJUGGLER_OPT /DNDEBUG 17 17 LDFLAGS_DBG= /DEBUG 18 18 LDFLAGS_OPT= /RELEASE … … 21 21 CXXFLAGS= $(shell flagpoll vrjuggler --cflags) -I$(srcdir) \ 22 22 -I$(top_srcdir) $(CXXFLAGS_OPT) 23 CXXFLAGS_DBG=-D _DEBUG -g24 CXXFLAGS_OPT=-D _OPT -DNDEBUG -O223 CXXFLAGS_DBG=-DPYJUGGLER_DEBUG -DJUGGLER_DEBUG -g 24 CXXFLAGS_OPT=-DPYJUGGLER_OPT -DJUGGLER_OPT -DNDEBUG -O2 25 25 LDFLAGS_DBG= -g 26 26 LDFLAGS_OPT= -O2 PyJuggler/branches/1.2/examples/cxx/PyExtApp/extApp.vcproj
r14908 r20410 24 24 Optimization="0" 25 25 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 26 PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32" 26 PreprocessorDefinitions="PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;WIN32" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 RuntimeTypeInfo="TRUE" 30 UsePrecompiledHeader="0" 31 PrecompiledHeaderFile="" 32 AssemblerListingLocation="" 33 ObjectFile="$(IntDir)/" 34 ProgramDataBaseFileName="$(IntDir)/" 35 WarningLevel="3" 36 DebugInformationFormat="4" 37 CompileAs="2" 38 DisableSpecificWarnings="4005;4244;4251;4275;4290"/> 39 <Tool 40 Name="VCCustomBuildTool"/> 41 <Tool 42 Name="VCLinkerTool" 43 AdditionalOptions="/MACHINE:I386" 44 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 45 OutputFile="$(OutDir)/extApp.exe" 46 LinkIncremental="2" 47 SuppressStartupBanner="TRUE" 48 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";"$(VJ_DEPS_DIR)\lib";"$(VJ_BASE_DIR)\lib"" 49 GenerateDebugInformation="FALSE" 50 ProgramDatabaseFile="$(OutDir)/extApp.pdb" 51 SubSystem="1" 52 TargetMachine="1"/> 53 <Tool 54 Name="VCMIDLTool" 55 TypeLibraryName="$(OutDir)/extApp.tlb"/> 56 <Tool 57 Name="VCPostBuildEventTool"/> 58 <Tool 59 Name="VCPreBuildEventTool"/> 60 <Tool 61 Name="VCPreLinkEventTool"/> 62 <Tool 63 Name="VCResourceCompilerTool" 64 PreprocessorDefinitions="_DEBUG" 65 Culture="1033"/> 66 <Tool 67 Name="VCWebServiceProxyGeneratorTool"/> 68 <Tool 69 Name="VCXMLDataGeneratorTool"/> 70 <Tool 71 Name="VCWebDeploymentTool"/> 72 <Tool 73 Name="VCManagedWrapperGeneratorTool"/> 74 <Tool 75 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 76 </Configuration> 77 <Configuration 78 Name="DebugRt|Win32" 79 OutputDirectory="Debug" 80 IntermediateDirectory="Debug" 81 ConfigurationType="1" 82 UseOfMFC="0" 83 ATLMinimizesCRunTimeLibraryUsage="FALSE"> 84 <Tool 85 Name="VCCLCompilerTool" 86 AdditionalOptions="/Zm800" 87 Optimization="0" 88 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 89 PreprocessorDefinitions="PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;WIN32" 27 90 BasicRuntimeChecks="3" 28 91 RuntimeLibrary="3" … … 43 106 Name="VCLinkerTool" 44 107 AdditionalOptions="/MACHINE:I386" 45 AdditionalDependencies=" vrj_d.lib vrj_ogl_d.lib gadget_d.lib jccl_d.lib vpr_d.liblibnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-gd-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)"108 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-gd-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 46 109 OutputFile="$(OutDir)/extApp.exe" 47 110 LinkIncremental="2" … … 88 151 OmitFramePointers="FALSE" 89 152 AdditionalIncludeDirectories=".;"$(PYTHON_ROOT)\include";"$(VJ_DEPS_DIR)\include";"$(VJ_BASE_DIR)\include"" 90 PreprocessorDefinitions=" _OPT;NDEBUG;_CONSOLE;WIN32"153 PreprocessorDefinitions="PYJUGGLER_OPT;JUGGLER_OPT;NDEBUG;_CONSOLE;WIN32" 91 154 StringPooling="TRUE" 92 155 RuntimeLibrary="2" … … 108 171 Name="VCLinkerTool" 109 172 AdditionalOptions="/MACHINE:I386" 110 AdditionalDependencies=" vrj.lib vrj_ogl.lib gadget.lib jccl.lib vpr.liblibnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)"173 AdditionalDependencies="libnspr4.lib libplc4.lib python$(PYTHON_VERSION).lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib comctl32.lib ws2_32.lib opengl32.lib glu32.lib $(NOINHERIT)" 111 174 OutputFile="$(OutDir)/extApp.exe" 112 175 LinkIncremental="1" PyJuggler/branches/1.2/pyjutil/Makefile.in
r19730 r20410 36 36 ARFLAGS+= $(LDFLAGS) 37 37 CXXFLAGS+= /Zm800 /GX /GR /Op /Zc:wchar_t,forScope 38 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /D _DEBUG39 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /D _OPT /DNDEBUG38 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /DPYJUGGLER_DEBUG /DJUGGLER_DEBUG 39 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /DPYJUGGLER_OPT /DJUGGLER_OPT /DNDEBUG 40 40 LDFLAGS_DBG= /DEBUG 41 41 LDFLAGS_OPT= /RELEASE … … 43 43 LIBEXT_OPT= 44 44 else 45 CXXFLAGS_DBG=-D _DEBUG -g46 CXXFLAGS_OPT=-D _OPT -DNDEBUG -O245 CXXFLAGS_DBG=-DPYJUGGLER_DEBUG -DJUGGLER_DEBUG -g 46 CXXFLAGS_OPT=-DPYJUGGLER_OPT -DJUGGLER_OPT -DNDEBUG -O2 47 47 LDFLAGS_DBG= -g 48 48 LDFLAGS_OPT= -O2 PyJuggler/branches/1.2/src/common-targets.mk.in
r19730 r20410 21 21 CXXFLAGS+= /Zm800 /GX /GR /Op /DBOOST_PYTHON_DYNAMIC_LIB \ 22 22 /Zc:wchar_t,forScope 23 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /D _DEBUG24 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /D _OPT /DNDEBUG23 CXXFLAGS_DBG=/Z7 /Od /Ob0 /MDd /DPYJUGGLER_DEBUG /DJUGGLER_DEBUG 24 CXXFLAGS_OPT=/Ogity /O2 /Gs /Ob2 /MD /DPYJUGGLER_OPT /DJUGGLER_OPT /DNDEBUG 25 25 LDFLAGS_DBG= /DEBUG 26 26 LDFLAGS_OPT= /RELEASE … … 29 29 else 30 30 CXXFLAGS+= -DBOOST_PYTHON_DYNAMIC_LIB 31 CXXFLAGS_DBG=-D _DEBUG -g32 CXXFLAGS_OPT=-D _OPT -DNDEBUG -O231 CXXFLAGS_DBG=-DPYJUGGLER_DEBUG -DJUGGLER_DEBUG -g 32 CXXFLAGS_OPT=-DPYJUGGLER_OPT -DJUGGLER_OPT -DNDEBUG -O2 33 33 LDFLAGS_DBG= -g 34 34 LDFLAGS_OPT= -O2 PyJuggler/branches/1.2/vc7/cluster/cluster.vcproj
r19262 r20410 23 23 ImproveFloatingPointConsistency="TRUE" 24 24 AdditionalIncludeDirectories="..\..;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 MinimalRebuild="FALSE" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 TreatWChar_tAsBuiltInType="TRUE" 30 ForceConformanceInForLoopScope="TRUE" 31 RuntimeTypeInfo="TRUE" 32 UsePrecompiledHeader="0" 33 WarningLevel="3" 34 Detect64BitPortabilityProblems="TRUE" 35 DebugInformationFormat="1" 36 DisableSpecificWarnings="4005;4244;4251;4267;4275;4290;4312"/> 37 <Tool 38 Name="VCCustomBuildTool"/> 39 <Tool 40 Name="VCLinkerTool" 41 AdditionalDependencies="pyjutil_g.lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib $(NOINHERIT)" 42 OutputFile="$(OutDir)/cluster_g.pyd" 43 LinkIncremental="1" 44 SuppressStartupBanner="TRUE" 45 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";..\pyjutil\Debug;"$(VJ_BASE_DIR)\lib";"$(VJ_DEPS_DIR)\lib"" 46 GenerateDebugInformation="FALSE" 47 ProgramDatabaseFile="$(OutDir)/cluster_g.pdb" 48 SubSystem="1" 49 ImportLibrary="$(OutDir)/cluster_g.lib" 50 TargetMachine="1"/> 51 <Tool 52 Name="VCMIDLTool"/> 53 <Tool 54 Name="VCPostBuildEventTool"/> 55 <Tool 56 Name="VCPreBuildEventTool"/> 57 <Tool 58 Name="VCPreLinkEventTool"/> 59 <Tool 60 Name="VCResourceCompilerTool"/> 61 <Tool 62 Name="VCWebServiceProxyGeneratorTool"/> 63 <Tool 64 Name="VCXMLDataGeneratorTool"/> 65 <Tool 66 Name="VCWebDeploymentTool"/> 67 <Tool 68 Name="VCManagedWrapperGeneratorTool"/> 69 <Tool 70 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 71 </Configuration> 72 <Configuration 73 Name="DebugRt|Win32" 74 OutputDirectory="../lib" 75 IntermediateDirectory="Debug" 76 ConfigurationType="2" 77 CharacterSet="2"> 78 <Tool 79 Name="VCCLCompilerTool" 80 AdditionalOptions="/Zm800" 81 Optimization="0" 82 ImproveFloatingPointConsistency="TRUE" 83 AdditionalIncludeDirectories="..\..;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 84 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 85 MinimalRebuild="FALSE" 27 86 BasicRuntimeChecks="3" PyJuggler/branches/1.2/vc7/gadget/gadget.vcproj
r19262 r20410 23 23 ImproveFloatingPointConsistency="TRUE" 24 24 AdditionalIncludeDirectories="..\..\src;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 MinimalRebuild="FALSE" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 TreatWChar_tAsBuiltInType="TRUE" 30 ForceConformanceInForLoopScope="TRUE" 31 RuntimeTypeInfo="TRUE" 32 UsePrecompiledHeader="0" 33 WarningLevel="3" 34 Detect64BitPortabilityProblems="TRUE" 35 DebugInformationFormat="1" 36 DisableSpecificWarnings="4005;4244;4251;4267;4275;4290;4312"/> 37 <Tool 38 Name="VCCustomBuildTool"/> 39 <Tool 40 Name="VCLinkerTool" 41 AdditionalDependencies="pyjutil_g.lib libnspr4.lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib $(NOINHERIT)" 42 OutputFile="$(OutDir)/gadget_g.pyd" 43 LinkIncremental="1" 44 SuppressStartupBanner="TRUE" 45 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";..\pyjutil\Debug;"$(VJ_BASE_DIR)\lib";"$(VJ_DEPS_DIR)\lib"" 46 GenerateDebugInformation="FALSE" 47 ProgramDatabaseFile="$(OutDir)/gadget_g.pdb" 48 SubSystem="1" 49 ImportLibrary="$(OutDir)/gadget_g.lib" 50 TargetMachine="1"/> 51 <Tool 52 Name="VCMIDLTool"/> 53 <Tool 54 Name="VCPostBuildEventTool"/> 55 <Tool 56 Name="VCPreBuildEventTool"/> 57 <Tool 58 Name="VCPreLinkEventTool"/> 59 <Tool 60 Name="VCResourceCompilerTool"/> 61 <Tool 62 Name="VCWebServiceProxyGeneratorTool"/> 63 <Tool 64 Name="VCXMLDataGeneratorTool"/> 65 <Tool 66 Name="VCWebDeploymentTool"/> 67 <Tool 68 Name="VCManagedWrapperGeneratorTool"/> 69 <Tool 70 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 71 </Configuration> 72 <Configuration 73 Name="DebugRt|Win32" 74 OutputDirectory="../lib" 75 IntermediateDirectory="Debug" 76 ConfigurationType="2" 77 CharacterSet="2"> 78 <Tool 79 Name="VCCLCompilerTool" 80 AdditionalOptions="/Zm800" 81 Optimization="0" 82 ImproveFloatingPointConsistency="TRUE" 83 AdditionalIncludeDirectories="..\..\src;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 84 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 85 MinimalRebuild="FALSE" 27 86 BasicRuntimeChecks="3" PyJuggler/branches/1.2/vc7/jccl/jccl.vcproj
r19262 r20410 23 23 ImproveFloatingPointConsistency="TRUE" 24 24 AdditionalIncludeDirectories="..\..\src;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 MinimalRebuild="FALSE" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 TreatWChar_tAsBuiltInType="TRUE" 30 ForceConformanceInForLoopScope="TRUE" 31 RuntimeTypeInfo="TRUE" 32 UsePrecompiledHeader="0" 33 WarningLevel="3" 34 Detect64BitPortabilityProblems="TRUE" 35 DebugInformationFormat="1" 36 DisableSpecificWarnings="4005;4244;4267;4290"/> 37 <Tool 38 Name="VCCustomBuildTool"/> 39 <Tool 40 Name="VCLinkerTool" 41 AdditionalDependencies="pyjutil_g.lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib $(NOINHERIT)" 42 OutputFile="$(OutDir)/jccl_g.pyd" 43 LinkIncremental="1" 44 SuppressStartupBanner="TRUE" 45 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";..\pyjutil\Debug;"$(VJ_BASE_DIR)\lib";"$(VJ_DEPS_DIR)\lib"" 46 GenerateDebugInformation="FALSE" 47 ProgramDatabaseFile="$(OutDir)/jccl_g.pdb" 48 SubSystem="1" 49 ImportLibrary="$(OutDir)/jccl_g.lib" 50 TargetMachine="1"/> 51 <Tool 52 Name="VCMIDLTool"/> 53 <Tool 54 Name="VCPostBuildEventTool"/> 55 <Tool 56 Name="VCPreBuildEventTool"/> 57 <Tool 58 Name="VCPreLinkEventTool"/> 59 <Tool 60 Name="VCResourceCompilerTool"/> 61 <Tool 62 Name="VCWebServiceProxyGeneratorTool"/> 63 <Tool 64 Name="VCXMLDataGeneratorTool"/> 65 <Tool 66 Name="VCWebDeploymentTool"/> 67 <Tool 68 Name="VCManagedWrapperGeneratorTool"/> 69 <Tool 70 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 71 </Configuration> 72 <Configuration 73 Name="DebugRt|Win32" 74 OutputDirectory="../lib" 75 IntermediateDirectory="Debug" 76 ConfigurationType="2" 77 CharacterSet="2"> 78 <Tool 79 Name="VCCLCompilerTool" 80 AdditionalOptions="/Zm800" 81 Optimization="0" 82 ImproveFloatingPointConsistency="TRUE" 83 AdditionalIncludeDirectories="..\..\src;"$(PYTHON_ROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 84 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 85 MinimalRebuild="FALSE" 27 86 BasicRuntimeChecks="3" PyJuggler/branches/1.2/vc7/opensgapp/opensgapp.vcproj
r19635 r20410 23 23 ImproveFloatingPointConsistency="TRUE" 24 24 AdditionalIncludeDirectories="..\..\src;..\..;"$(PYTHON_ROOT)\include";"$(OSGROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB;_WINDOWS;WINVER=0x0400;_WIN32_WINDOWS=0x0410;_WIN32_WINNT=0x0400;_OSG_HAVE_CONFIGURED_H_;OSG_BUILD_DLL;OSG_DEBUG;OSG_WITH_GLUT;OSG_WITH_GIF;OSG_WITH_TIF;OSG_WITH_JPG;WININC" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB;_WINDOWS;WINVER=0x0400;_WIN32_WINDOWS=0x0410;_WIN32_WINNT=0x0400;_OSG_HAVE_CONFIGURED_H_;OSG_BUILD_DLL;OSG_DEBUG;OSG_WITH_GLUT;OSG_WITH_GIF;OSG_WITH_TIF;OSG_WITH_JPG;WININC" 26 MinimalRebuild="FALSE" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 TreatWChar_tAsBuiltInType="TRUE" 30 ForceConformanceInForLoopScope="TRUE" 31 RuntimeTypeInfo="TRUE" 32 UsePrecompiledHeader="0" 33 WarningLevel="3" 34 Detect64BitPortabilityProblems="TRUE" 35 DebugInformationFormat="1" 36 DisableSpecificWarnings="4005;4231;4244;4251;4267;4275;4290;4312"/> 37 <Tool 38 Name="VCCustomBuildTool"/> 39 <Tool 40 Name="VCLinkerTool" 41 AdditionalDependencies="pyjutil_g.lib boost_python-$(BOOST_TOOL)-mt-$(BOOST_VERSION).lib OSGBase.lib OSGSystem.lib opengl32.lib glu32.lib $(NOINHERIT)" 42 OutputFile="$(OutDir)/__opensgapp_g.pyd" 43 LinkIncremental="1" 44 SuppressStartupBanner="TRUE" 45 AdditionalLibraryDirectories=""$(PYTHON_ROOT)\libs";..\pyjutil\Debug;"$(OSGROOT)\lib";"$(VJ_BASE_DIR)\lib";"$(VJ_DEPS_DIR)\lib"" 46 GenerateDebugInformation="FALSE" 47 ProgramDatabaseFile="$(OutDir)/__opensgapp_g.pdb" 48 SubSystem="1" 49 ImportLibrary="$(OutDir)/__opensgapp_g.lib" 50 TargetMachine="1"/> 51 <Tool 52 Name="VCMIDLTool"/> 53 <Tool 54 Name="VCPostBuildEventTool"/> 55 <Tool 56 Name="VCPreBuildEventTool"/> 57 <Tool 58 Name="VCPreLinkEventTool"/> 59 <Tool 60 Name="VCResourceCompilerTool"/> 61 <Tool 62 Name="VCWebServiceProxyGeneratorTool"/> 63 <Tool 64 Name="VCXMLDataGeneratorTool"/> 65 <Tool 66 Name="VCWebDeploymentTool"/> 67 <Tool 68 Name="VCManagedWrapperGeneratorTool"/> 69 <Tool 70 Name="VCAuxiliaryManagedWrapperGeneratorTool"/> 71 </Configuration> 72 <Configuration 73 Name="DebugRt|Win32" 74 OutputDirectory="../lib" 75 IntermediateDirectory="Debug" 76 ConfigurationType="2" 77 CharacterSet="2"> 78 <Tool 79 Name="VCCLCompilerTool" 80 AdditionalOptions="/Zm800" 81 Optimization="0" 82 ImproveFloatingPointConsistency="TRUE" 83 AdditionalIncludeDirectories="..\..\src;..\..;"$(PYTHON_ROOT)\include";"$(OSGROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 84 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB;_WINDOWS;WINVER=0x0400;_WIN32_WINDOWS=0x0410;_WIN32_WINNT=0x0400;_OSG_HAVE_CONFIGURED_H_;OSG_BUILD_DLL;OSG_DEBUG;OSG_WITH_GLUT;OSG_WITH_GIF;OSG_WITH_TIF;OSG_WITH_JPG;WININC" 26 85 MinimalRebuild="FALSE" 27 86 BasicRuntimeChecks="3" … … 85 144 OmitFramePointers="TRUE" 86 145 AdditionalIncludeDirectories="..\..\src;..\..;"$(PYTHON_ROOT)\include";"$(OSGROOT)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 87 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;NDEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB; _OPT;_WINDOWS;WINVER=0x0400;_WIN32_WINDOWS=0x0410;_WIN32_WINNT=0x0400;_OSG_HAVE_CONFIGURED_H_;OSG_BUILD_DLL;OSG_WITH_GLUT;OSG_WITH_GIF;OSG_WITH_TIF;OSG_WITH_JPG;WININC"146 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;NDEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB;PYJUGGLER_OPT;JUGGLER_OPT;_WINDOWS;WINVER=0x0400;_WIN32_WINDOWS=0x0410;_WIN32_WINNT=0x0400;_OSG_HAVE_CONFIGURED_H_;OSG_BUILD_DLL;OSG_WITH_GLUT;OSG_WITH_GIF;OSG_WITH_TIF;OSG_WITH_JPG;WININC" 88 147 StringPooling="TRUE" 89 148 RuntimeLibrary="2" PyJuggler/branches/1.2/vc7/osgapp/osgapp.vcproj
r19262 r20410 23 23 ImproveFloatingPointConsistency="TRUE" 24 24 AdditionalIncludeDirectories="..\..\src;..\..;"$(PYTHON_ROOT)\include";"$(OSGHOME)\include";"$(VJ_BASE_DIR)\include";"$(VJ_DEPS_DIR)\include"" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 25 PreprocessorDefinitions="CPPDOM_DYN_LINK;WIN32;PYJUGGLER_DEBUG;JUGGLER_DEBUG;_CONSOLE;_USRDLL;BOOST_PYTHON_DYNAMIC_LIB" 26 MinimalRebuild="FALSE" 27 RuntimeLibrary="2" 28 BufferSecurityCheck="FALSE" 29 TreatWChar_tAsBuiltInType="TRUE" 30 ForceConformanceInForLoopScope="TRUE" 31 &
