-
-
Notifications
You must be signed in to change notification settings - Fork 808
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2088 from xq114/dev
fix vsxmake on windows
- Loading branch information
Showing
19 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.c(filec)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ClCompile Include="$(XmakeProjectDir)\#path#"> | ||
<ClCompile Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</ClCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.cu(filecu)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<CudaCompile Include="$(XmakeProjectDir)\#path#"> | ||
<CudaCompile Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</CudaCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.cxx(filecxx)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ClCompile Include="$(XmakeProjectDir)\#path#"> | ||
<ClCompile Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</ClCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.mpp(filempp)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<None Include="$(XmakeProjectDir)\#path#"> | ||
<None Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</None> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.obj(fileobj)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<Object Include="$(XmakeProjectDir)\#path#"> | ||
<Object Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</Object> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.rc(filerc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ResourceCompile Include="$(XmakeProjectDir)\#path#"> | ||
<ResourceCompile Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</ResourceCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/File.ui(fileui)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<None Include="$(XmakeProjectDir)\#path#"> | ||
<None Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</None> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/Include.c(incc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ClInclude Include="$(XmakeProjectDir)\#path#"> | ||
<ClInclude Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</ClInclude> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj.filters/Include.natvis(incnatvis)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<Natvis Include="$(XmakeProjectDir)\#path#"> | ||
<Natvis Include="#path#"> | ||
<Filter>#dir#</Filter> | ||
</Natvis> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.c(filec)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ClCompile Include="$(XmakeProjectDir)\#path#"> | ||
<ClCompile Include="#path#"> | ||
<CompileAs>CompileAsC</CompileAs> | ||
</ClCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.cu(filecu)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<CudaCompile Include="$(XmakeProjectDir)\#path#" /> | ||
<CudaCompile Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.cxx(filecxx)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<ClCompile Include="$(XmakeProjectDir)\#path#"> | ||
<ClCompile Include="#path#"> | ||
<CompileAs>CompileAsCpp</CompileAs> | ||
</ClCompile> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.mpp(filempp)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<None Include="$(XmakeProjectDir)\#path#" /> | ||
<None Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.obj(fileobj)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<Object Include="$(XmakeProjectDir)\#path#" /> | ||
<Object Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.rc(filerc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<ResourceCompile Include="$(XmakeProjectDir)\#path#" /> | ||
<ResourceCompile Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/File.ui(fileui)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<None Include="$(XmakeProjectDir)\#path#" /> | ||
<None Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/Include.c(incc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<ClInclude Include="$(XmakeProjectDir)\#path#" /> | ||
<ClInclude Include="#path#" /> |
2 changes: 1 addition & 1 deletion
2
xmake/plugins/project/vsxmake/vsproj/templates/vcxproj/Include.natvis(incnatvis)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<Natvis Include="$(XmakeProjectDir)\#path#"> | ||
<Natvis Include="#path#"> | ||
<FileType>Document</FileType> | ||
</Natvis> |