forked from nesbox/TIC-80
-
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.
Added support for the Squirrel programming language.
- Loading branch information
1 parent
dbb762d
commit 8532df2
Showing
16 changed files
with
2,879 additions
and
1,191 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup /> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,43 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="src"> | ||
<UniqueIdentifier>{0fae60ee-e4da-4394-b6f1-dafed679fe4d}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="src\ext"> | ||
<UniqueIdentifier>{40647055-2f61-4d14-8f63-1ec2a6f7cd90}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="src\ext\duktape"> | ||
<UniqueIdentifier>{32b7b251-991e-49bf-b9b3-146483deba38}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="..\..\..\src\tic80.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\jsapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\luaapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\tic.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\ext\gif.c"> | ||
<Filter>src\ext</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\tools.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\3rd-party\duktape-2.2.0\src\duktape.c"> | ||
<Filter>src\ext\duktape</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\3rd-party\blip-buf\blip_buf.c"> | ||
<Filter>src\ext</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\wrenapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="src"> | ||
<UniqueIdentifier>{0fae60ee-e4da-4394-b6f1-dafed679fe4d}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="src\ext"> | ||
<UniqueIdentifier>{40647055-2f61-4d14-8f63-1ec2a6f7cd90}</UniqueIdentifier> | ||
</Filter> | ||
<Filter Include="src\ext\duktape"> | ||
<UniqueIdentifier>{32b7b251-991e-49bf-b9b3-146483deba38}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="..\..\..\src\tic80.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\jsapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\luaapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\tic.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\ext\gif.c"> | ||
<Filter>src\ext</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\tools.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\3rd-party\duktape-2.2.0\src\duktape.c"> | ||
<Filter>src\ext\duktape</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\3rd-party\blip-buf\blip_buf.c"> | ||
<Filter>src\ext</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\wrenapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
<ClCompile Include="..\..\..\src\squirrelapi.c"> | ||
<Filter>src</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.