Notifications
Clear all

[Closed] Project Settings problem

I am changing the settings (.prop) files now.
But I’ve got a question for you.
How do you create a include path for brand new project?
How do you default it to x64/release?


 <?xml version="1.0" encoding="utf-8"?> 
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 	<ItemDefinitionGroup>
 		<ClCompile Condition="'$(Platform)'=='$(PlatformX32)'">
 			<PreprocessorDefinitions>;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 			<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
 		</ClCompile>
 		<ClCompile Condition="'$(Platform)'=='$(PlatformX64)'">
 			<PreprocessorDefinitions>;WIN32;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 		</ClCompile>
 		<Link Condition="'$(Platform)'=='$(PlatformX32'">
 			<BaseAddress>baseaddr.txt</BaseAddress>
 			<TargetMachine>MachineX86</TargetMachine>
 		</Link>
 		<Link Condition="'$(Platform)'=='$(PlatformX64'">
 			<BaseAddress>baseaddr64.txt</BaseAddress>
 			<TargetMachine>MachineX64</TargetMachine>
 		</Link>
 	</ItemDefinitionGroup>
 </Project>
 

I tried to delete the PlatformX32 condition and delete the first win32 option in the x64 platform, but it still defaults to win32 when
creating a new project. Any help would be greatly appreciated!

Thanks
Jack