cd .. for nmake

main
Volker Birk 2023-02-07 23:22:06 +01:00
parent fd883ab3f1
commit 01375f17f7
1 changed files with 6 additions and 6 deletions

View File

@ -42,18 +42,18 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NMakeBuildCommandLine>nmake /f ..\NMakefile /e DEBUG=debug</NMakeBuildCommandLine>
<NMakeBuildCommandLine>cd .. &amp;&amp; nmake /f NMakefile /e DEBUG=debug</NMakeBuildCommandLine>
<NMakeOutput>$(ProjectPath)..\target\debug\pep_engine_sequoia_backend.dll</NMakeOutput>
<NMakeCleanCommandLine>nmake /f ..\NMakefile clean</NMakeCleanCommandLine>
<NMakeCleanCommandLine>cd .. &amp;&amp; nmake /f NMakefile clean</NMakeCleanCommandLine>
<NMakePreprocessorDefinitions>_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeReBuildCommandLine>nmake /f ..\NMakefile /e DEBUG=debug clean build</NMakeReBuildCommandLine>
<NMakeReBuildCommandLine>cd .. &amp;&amp; nmake /f NMakefile /e DEBUG=debug clean build</NMakeReBuildCommandLine>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NMakeBuildCommandLine>nmake /f ..\NMakefile</NMakeBuildCommandLine>
<NMakeBuildCommandLine>cd .. &amp;&amp; nmake /f NMakefile</NMakeBuildCommandLine>
<NMakeOutput>$(ProjectDir)..\target\release\pep_engine_sequoia_backend.dll</NMakeOutput>
<NMakeCleanCommandLine>nmake /f ..\NMakefile clean</NMakeCleanCommandLine>
<NMakeCleanCommandLine>cd .. &amp;&amp; nmake /f NMakefile clean</NMakeCleanCommandLine>
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeReBuildCommandLine>nmake /f ..\NMakefile clean build</NMakeReBuildCommandLine>
<NMakeReBuildCommandLine>cd .. &amp;&amp; nmake /f NMakefile clean build</NMakeReBuildCommandLine>
</PropertyGroup>
<ItemDefinitionGroup>
</ItemDefinitionGroup>