-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CHEN Xin Liang
committed
Sep 10, 2018
1 parent
e37fc24
commit 04537e9
Showing
3 changed files
with
37 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.shared-dep | ||
*.json | ||
*.stackdump | ||
*.sublime-workspace | ||
|
||
# Prerequisites | ||
*.d | ||
|
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,9 +1,13 @@ | ||
<Project DefaultTargets="build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<UsingTask TaskName="CL" AssemblyName="CSAR" /> | ||
<UsingTask TaskName="Link" AssemblyName="CSAR" /> | ||
<PropertyGroup> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="src/csar.cpp" /> | ||
</ItemGroup> | ||
<Target Name="Build"> | ||
</Target> | ||
<ItemGroup> | ||
<Compile Include="src/csar.cpp" /> | ||
</ItemGroup> | ||
<Target Name="Build"> | ||
<CL Sources="@(Compile)" /> | ||
<Link Sources="@(Compile -> '%(FileName).obj')" /> | ||
</Target> | ||
</Project> |
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