Skip to content

Commit

Permalink
Remove quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShortDevelopment committed May 12, 2023
1 parent ae4599b commit e128f0f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cs/Compiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@
</BuildDependsOn>
</PropertyGroup>

<Target Name="ExternalBuild"
Inputs="$(ProjectDir)\..\compiler\CMakeLists.txt;@(None)"
Outputs="$(ProjectDir)\tools\gbc.exe">
<Target Name="ExternalBuild">
<Message Text="Building Bond Compiler..." Importance="High" />

<MakeDir Directories="$(IntermediateOutputPath)" />
Expand All @@ -86,7 +84,7 @@
<_BondCmakeProgramPath Condition=" '$(STACK_PATH)' != '' ">"-DCMAKE_PROGRAM_PATH=$(STACK_PATH)\."</_BondCmakeProgramPath>
</PropertyGroup>

<Exec Command="cmake &quot;$(ProjectDir)\..\compiler&quot; &quot;$(_BondCmakeProgramPath)&quot; -Wno-dev" WorkingDirectory="$(IntermediateOutputPath)" />
<Exec Command="cmake &quot;$(ProjectDir)\..\compiler&quot; $(_BondCmakeProgramPath) -Wno-dev" WorkingDirectory="$(IntermediateOutputPath)" />
<Exec Command="cmake --build . --config $(BondCompilerCMakeBuildType) --target gbc" WorkingDirectory="$(IntermediateOutputPath)" />

<Copy SourceFiles="$(IntermediateOutputPath)\build\gbc\gbc.exe" DestinationFolder="$(ProjectDir)\tools\" />
Expand Down

0 comments on commit e128f0f

Please sign in to comment.