Skip to content

Commit

Permalink
GUI is now used as submodule, because it useing not only NGT.
Browse files Browse the repository at this point in the history
  • Loading branch information
m1maker committed Aug 14, 2024
1 parent ea3bbf2 commit 451e0b8
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 678 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ NGTScript/NGTScript
*.swp
*.pdb
*.reapeaks
docs/
ngt-docs/
GUI/
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "ngt-docs"]
path = ngt-docs
url = https://github.com/m1maker/ngt-docs
[submodule "GUI"]
path = GUI
url = https://github.com/m1maker/GUI
1 change: 1 addition & 0 deletions GUI
Submodule GUI added at af0fd9
4 changes: 2 additions & 2 deletions NGTScript/NGTScript.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
</Xdcmake>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\GUI\gui.h" />
<ClInclude Include="AES\aes.h" />
<ClInclude Include="AES\aes.hpp" />
<ClInclude Include="angelscript.h" />
Expand All @@ -179,7 +180,6 @@
<ClInclude Include="ffi_common.h" />
<ClInclude Include="fx\freeverb.h" />
<ClInclude Include="fx\verblib.h" />
<ClInclude Include="gui.h" />
<ClInclude Include="http.h" />
<ClInclude Include="joystick.h" />
<ClInclude Include="MemoryStream.h" />
Expand Down Expand Up @@ -294,6 +294,7 @@
<ClInclude Include="uni_algo.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\GUI\gui.cpp" />
<ClCompile Include="AES\aes.c" />
<ClCompile Include="as_class.cpp" />
<ClCompile Include="cmp.c" />
Expand All @@ -303,7 +304,6 @@
<ClCompile Include="dlibrary.cpp" />
<ClCompile Include="docgen.cpp" />
<ClCompile Include="fx\freeverb.c" />
<ClCompile Include="gui.cpp" />
<ClCompile Include="http.cpp" />
<ClCompile Include="joystick.cpp" />
<ClCompile Include="main.cpp" />
Expand Down
4 changes: 2 additions & 2 deletions NGTScript/NGTScript.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
<ClCompile Include="fx\freeverb.c" />
<ClCompile Include="cmp.c" />
<ClCompile Include="docgen.cpp" />
<ClCompile Include="gui.cpp" />
<ClCompile Include="MemoryStream.cpp" />
<ClCompile Include="scriptstdstring\scriptstdwstring.cpp" />
<ClCompile Include="AES\aes.c" />
<ClCompile Include="..\GUI\gui.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="angelscript.h" />
Expand Down Expand Up @@ -174,13 +174,13 @@
<ClInclude Include="SDL3\SDL_video.h" />
<ClInclude Include="SDL3\SDL_vulkan.h" />
<ClInclude Include="docgen.h" />
<ClInclude Include="gui.h" />
<ClInclude Include="MemoryStream.h" />
<ClInclude Include="ffi.h" />
<ClInclude Include="ffi_cfi.h" />
<ClInclude Include="ffi_common.h" />
<ClInclude Include="scriptstdstring\scriptstdwstring.h" />
<ClInclude Include="AES\aes.h" />
<ClInclude Include="AES\aes.hpp" />
<ClInclude Include="..\GUI\gui.h" />
</ItemGroup>
</Project>
Loading

0 comments on commit 451e0b8

Please sign in to comment.