Visual studio 2022 cd command error , what should be done [closed]
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 hour ago.
Improve this questionhope y'all doing well !
im trying to build metin2 game source , its compatible with vstudio 2022 with v143 build tools .
im new into this , so if someone can help i'd appreciate
im facing this error while trying to build my src
Error MSB3073 The command "cd C:\Users\Ziad-\OneDrive\Desktop\Altyapı\Binary\Client\CRootLib\Workplace
call 2.bat call 3.bathttps://gyazo.com/a276493f8ffa46a6ee80eee94ee37180
this is a part of the file when i search for smthg related to that error , i found this code
thanks !
<PreBuildEvent>
<Command>cd $(ProjectDir)\Workplace\
call 2.bat
call 3.bat
</Command>
<Message>cythonizing root</Message>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>..\..\Extern\include\Python-2.7;..\..\Extern\include</AdditionalIncludeDirectories>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<CompileAs>开发者_开发问答CompileAsC</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<OmitFramePointers>true</OmitFramePointers>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<WholeProgramOptimization>false</WholeProgramOptimization>
<BrowseInformation>true</BrowseInformation>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PreBuildEvent>
<Message>cythonizing root</Message>
<Command>cd $(ProjectDir)\Workplace\
call 2.bat
call 3.bat
</Command>
after doing some searches ,
i added include memory to my Timerevent.h file , it worked . but now the src client and the src serverside arent compatible anymore and the client build getting larger size then it shouldve and some features doesnt work
so .. i need to build the original client src which is not working
精彩评论