Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit e128f0f

Browse files
Remove quotes
1 parent ae4599b commit e128f0f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cs/Compiler.csproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@
6969
</BuildDependsOn>
7070
</PropertyGroup>
7171

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

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

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

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

0 commit comments

Comments
 (0)