From c302f5ae5f9e30a28e487e8a764d9cc31546bbea Mon Sep 17 00:00:00 2001 From: chai Date: Fri, 29 Mar 2019 22:51:04 +0800 Subject: *rename --- build/modules/asura-box2d/asura-box2d.vcxproj | 122 +++++++++ .../asura-box2d/asura-box2d.vcxproj.filters | 2 + build/modules/asura-box2d/asura-box2d.vcxproj.user | 4 + build/modules/asura-core/asura-core.vcxproj | 222 +++++++++++++++ .../modules/asura-core/asura-core.vcxproj.filters | 302 +++++++++++++++++++++ build/modules/asura-core/asura-core.vcxproj.user | 4 + .../asura-framework/asura-framework.vcxproj | 122 +++++++++ .../asura-framework.vcxproj.filters | 17 ++ .../asura-framework/asura-framework.vcxproj.user | 4 + build/modules/asura-http/asura-http.vcxproj | 122 +++++++++ .../modules/asura-http/asura-http.vcxproj.filters | 17 ++ build/modules/asura-http/asura-http.vcxproj.user | 4 + build/modules/asura-json/asura-json.vcxproj | 130 +++++++++ .../modules/asura-json/asura-json.vcxproj.filters | 11 + build/modules/asura-json/asura-json.vcxproj.user | 4 + build/modules/asura-network/asura-network.vcxproj | 122 +++++++++ .../asura-network/asura-network.vcxproj.filters | 2 + .../asura-network/asura-network.vcxproj.user | 4 + build/modules/asura-openal/asura-openal.vcxproj | 132 +++++++++ .../asura-openal/asura-openal.vcxproj.filters | 13 + .../modules/asura-openal/asura-openal.vcxproj.user | 4 + build/modules/asura-plot/asura-plot.vcxproj | 122 +++++++++ .../modules/asura-plot/asura-plot.vcxproj.filters | 17 ++ build/modules/asura-plot/asura-plot.vcxproj.user | 4 + build/modules/asura-socket/asura-socket.vcxproj | 122 +++++++++ .../asura-socket/asura-socket.vcxproj.filters | 2 + .../modules/asura-socket/asura-socket.vcxproj.user | 4 + build/modules/asura-steam/asura-steam.vcxproj | 122 +++++++++ .../asura-steam/asura-steam.vcxproj.filters | 17 ++ build/modules/asura-steam/asura-steam.vcxproj.user | 4 + build/modules/asura-utils/asura-utils.vcxproj | 223 +++++++++++++++ .../asura-utils/asura-utils.vcxproj.filters | 249 +++++++++++++++++ build/modules/asura-utils/asura-utils.vcxproj.user | 4 + build/modules/asura-xml/asura-xml.vcxproj | 122 +++++++++ build/modules/asura-xml/asura-xml.vcxproj.filters | 2 + build/modules/asura-xml/asura-xml.vcxproj.user | 4 + 36 files changed, 2382 insertions(+) create mode 100644 build/modules/asura-box2d/asura-box2d.vcxproj create mode 100644 build/modules/asura-box2d/asura-box2d.vcxproj.filters create mode 100644 build/modules/asura-box2d/asura-box2d.vcxproj.user create mode 100644 build/modules/asura-core/asura-core.vcxproj create mode 100644 build/modules/asura-core/asura-core.vcxproj.filters create mode 100644 build/modules/asura-core/asura-core.vcxproj.user create mode 100644 build/modules/asura-framework/asura-framework.vcxproj create mode 100644 build/modules/asura-framework/asura-framework.vcxproj.filters create mode 100644 build/modules/asura-framework/asura-framework.vcxproj.user create mode 100644 build/modules/asura-http/asura-http.vcxproj create mode 100644 build/modules/asura-http/asura-http.vcxproj.filters create mode 100644 build/modules/asura-http/asura-http.vcxproj.user create mode 100644 build/modules/asura-json/asura-json.vcxproj create mode 100644 build/modules/asura-json/asura-json.vcxproj.filters create mode 100644 build/modules/asura-json/asura-json.vcxproj.user create mode 100644 build/modules/asura-network/asura-network.vcxproj create mode 100644 build/modules/asura-network/asura-network.vcxproj.filters create mode 100644 build/modules/asura-network/asura-network.vcxproj.user create mode 100644 build/modules/asura-openal/asura-openal.vcxproj create mode 100644 build/modules/asura-openal/asura-openal.vcxproj.filters create mode 100644 build/modules/asura-openal/asura-openal.vcxproj.user create mode 100644 build/modules/asura-plot/asura-plot.vcxproj create mode 100644 build/modules/asura-plot/asura-plot.vcxproj.filters create mode 100644 build/modules/asura-plot/asura-plot.vcxproj.user create mode 100644 build/modules/asura-socket/asura-socket.vcxproj create mode 100644 build/modules/asura-socket/asura-socket.vcxproj.filters create mode 100644 build/modules/asura-socket/asura-socket.vcxproj.user create mode 100644 build/modules/asura-steam/asura-steam.vcxproj create mode 100644 build/modules/asura-steam/asura-steam.vcxproj.filters create mode 100644 build/modules/asura-steam/asura-steam.vcxproj.user create mode 100644 build/modules/asura-utils/asura-utils.vcxproj create mode 100644 build/modules/asura-utils/asura-utils.vcxproj.filters create mode 100644 build/modules/asura-utils/asura-utils.vcxproj.user create mode 100644 build/modules/asura-xml/asura-xml.vcxproj create mode 100644 build/modules/asura-xml/asura-xml.vcxproj.filters create mode 100644 build/modules/asura-xml/asura-xml.vcxproj.user (limited to 'build/modules') diff --git a/build/modules/asura-box2d/asura-box2d.vcxproj b/build/modules/asura-box2d/asura-box2d.vcxproj new file mode 100644 index 0000000..8ad3c71 --- /dev/null +++ b/build/modules/asura-box2d/asura-box2d.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {ADFEEA50-F8B8-4453-BA88-BA7E7EE74485} + asurabox2d + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-box2d/asura-box2d.vcxproj.filters b/build/modules/asura-box2d/asura-box2d.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/build/modules/asura-box2d/asura-box2d.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/modules/asura-box2d/asura-box2d.vcxproj.user b/build/modules/asura-box2d/asura-box2d.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-box2d/asura-box2d.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-core/asura-core.vcxproj b/build/modules/asura-core/asura-core.vcxproj new file mode 100644 index 0000000..c01c3db --- /dev/null +++ b/build/modules/asura-core/asura-core.vcxproj @@ -0,0 +1,222 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {29A6837A-67FA-403F-83FD-E7975649404F} + asuracore + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-core/asura-core.vcxproj.filters b/build/modules/asura-core/asura-core.vcxproj.filters new file mode 100644 index 0000000..5bbd204 --- /dev/null +++ b/build/modules/asura-core/asura-core.vcxproj.filters @@ -0,0 +1,302 @@ + + + + + {a338aae6-b932-4a59-9a2e-f07283aaea64} + + + {18c6a104-a8f9-4794-80a0-2fe9afdfca3e} + + + {1a6ed8b6-908c-458d-a036-1ff57db1248a} + + + {3a06866e-ed35-485f-94a5-548b522fd1f4} + + + {81dedac2-8d27-4c19-bf40-1503f0dbad1b} + + + {4f6b2c19-1a06-48c9-b89d-52fa27bec5c1} + + + {7a73607c-8da6-4865-a992-5c7c8764bd5a} + + + + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + input + + + input + + + input + + + input + + + font + + + font + + + font + + + time + + + profiler + + + + graphics + + + input + + + graphics + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + window + + + window + + + window + + + window + + + + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + graphics + + + input + + + input + + + input + + + input + + + input + + + font + + + font + + + font + + + font + + + time + + + profiler + + + + + + input + + + input + + + graphics + + + input + + + graphics + + + window + + + window + + + window + + + window + + + + + font + + + font + + + input + + + input + + + input + + + \ No newline at end of file diff --git a/build/modules/asura-core/asura-core.vcxproj.user b/build/modules/asura-core/asura-core.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-core/asura-core.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-framework/asura-framework.vcxproj b/build/modules/asura-framework/asura-framework.vcxproj new file mode 100644 index 0000000..d2995e8 --- /dev/null +++ b/build/modules/asura-framework/asura-framework.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {CB05752F-B785-4715-9AA3-818C15ABA5F0} + asuraframework + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-framework/asura-framework.vcxproj.filters b/build/modules/asura-framework/asura-framework.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/modules/asura-framework/asura-framework.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/build/modules/asura-framework/asura-framework.vcxproj.user b/build/modules/asura-framework/asura-framework.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-framework/asura-framework.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-http/asura-http.vcxproj b/build/modules/asura-http/asura-http.vcxproj new file mode 100644 index 0000000..bf15337 --- /dev/null +++ b/build/modules/asura-http/asura-http.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {DCD127A6-68B3-48CA-B769-0680C167D99B} + asuralibhttp + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-http/asura-http.vcxproj.filters b/build/modules/asura-http/asura-http.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/modules/asura-http/asura-http.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/build/modules/asura-http/asura-http.vcxproj.user b/build/modules/asura-http/asura-http.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-http/asura-http.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-json/asura-json.vcxproj b/build/modules/asura-json/asura-json.vcxproj new file mode 100644 index 0000000..755ca25 --- /dev/null +++ b/build/modules/asura-json/asura-json.vcxproj @@ -0,0 +1,130 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {1B83A353-9694-42E0-997E-79E150E1C2E5} + asuralibjson + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + true + true + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-json/asura-json.vcxproj.filters b/build/modules/asura-json/asura-json.vcxproj.filters new file mode 100644 index 0000000..988e477 --- /dev/null +++ b/build/modules/asura-json/asura-json.vcxproj.filters @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-json/asura-json.vcxproj.user b/build/modules/asura-json/asura-json.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-json/asura-json.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-network/asura-network.vcxproj b/build/modules/asura-network/asura-network.vcxproj new file mode 100644 index 0000000..957bce0 --- /dev/null +++ b/build/modules/asura-network/asura-network.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {6361701E-BD43-4AE9-8AE2-5C8F87D436BA} + asuralibnetwork + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + true + true + + + + + + \ No newline at end of file diff --git a/build/modules/asura-network/asura-network.vcxproj.filters b/build/modules/asura-network/asura-network.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/build/modules/asura-network/asura-network.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/modules/asura-network/asura-network.vcxproj.user b/build/modules/asura-network/asura-network.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-network/asura-network.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-openal/asura-openal.vcxproj b/build/modules/asura-openal/asura-openal.vcxproj new file mode 100644 index 0000000..f29350e --- /dev/null +++ b/build/modules/asura-openal/asura-openal.vcxproj @@ -0,0 +1,132 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {088C6ABA-26A6-43D1-8492-096EDB65597C} + asuraopenal + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + true + true + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-openal/asura-openal.vcxproj.filters b/build/modules/asura-openal/asura-openal.vcxproj.filters new file mode 100644 index 0000000..7af022e --- /dev/null +++ b/build/modules/asura-openal/asura-openal.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-openal/asura-openal.vcxproj.user b/build/modules/asura-openal/asura-openal.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-openal/asura-openal.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-plot/asura-plot.vcxproj b/build/modules/asura-plot/asura-plot.vcxproj new file mode 100644 index 0000000..b26fbaa --- /dev/null +++ b/build/modules/asura-plot/asura-plot.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {F248C936-2169-45DF-8FC4-60E56EA23ECC} + asuralibplot + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-plot/asura-plot.vcxproj.filters b/build/modules/asura-plot/asura-plot.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/modules/asura-plot/asura-plot.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/build/modules/asura-plot/asura-plot.vcxproj.user b/build/modules/asura-plot/asura-plot.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-plot/asura-plot.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-socket/asura-socket.vcxproj b/build/modules/asura-socket/asura-socket.vcxproj new file mode 100644 index 0000000..e272ece --- /dev/null +++ b/build/modules/asura-socket/asura-socket.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {FF8319D3-7ADC-41BC-A397-B31690A7AB5F} + asuramodulesocket + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-socket/asura-socket.vcxproj.filters b/build/modules/asura-socket/asura-socket.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/build/modules/asura-socket/asura-socket.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/modules/asura-socket/asura-socket.vcxproj.user b/build/modules/asura-socket/asura-socket.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-socket/asura-socket.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-steam/asura-steam.vcxproj b/build/modules/asura-steam/asura-steam.vcxproj new file mode 100644 index 0000000..ba3825d --- /dev/null +++ b/build/modules/asura-steam/asura-steam.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {129C3826-B418-4C80-A126-0319C7E2A857} + asuramodulesteam + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-steam/asura-steam.vcxproj.filters b/build/modules/asura-steam/asura-steam.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/modules/asura-steam/asura-steam.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/build/modules/asura-steam/asura-steam.vcxproj.user b/build/modules/asura-steam/asura-steam.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-steam/asura-steam.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-utils/asura-utils.vcxproj b/build/modules/asura-utils/asura-utils.vcxproj new file mode 100644 index 0000000..f3227f6 --- /dev/null +++ b/build/modules/asura-utils/asura-utils.vcxproj @@ -0,0 +1,223 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {7D41093F-E356-4C5B-A25F-41779BF86E54} + asurautils + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\Bin\win64 + + + $(SolutionDir)..\Bin\win64 + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {8b8fca14-fc8a-45b4-bf3c-9340cb586076} + + + {1350cee9-b2c2-426a-af4e-f651d51dd592} + + + {aee37589-de0d-4139-8bdb-8179fdefb835} + + + + + + \ No newline at end of file diff --git a/build/modules/asura-utils/asura-utils.vcxproj.filters b/build/modules/asura-utils/asura-utils.vcxproj.filters new file mode 100644 index 0000000..fd4711c --- /dev/null +++ b/build/modules/asura-utils/asura-utils.vcxproj.filters @@ -0,0 +1,249 @@ + + + + + {30702383-d458-4486-8d86-bd98db74d3c8} + + + {d46782e8-fa86-46be-8e3e-728d313acfed} + + + {3a94ee03-c8db-4d2e-b0b6-5f6ba157580d} + + + {6eb6ffb5-ecd9-408b-a2f4-c14837822850} + + + {b4b078e1-bb8d-4cb3-84b9-963e851be123} + + + {d617f453-4cd1-451b-801d-2f88d0072303} + + + {e63982e2-a2ca-4aa2-be11-f98659586c1f} + + + + + exceptions + + + math + + + math + + + math + + + math + + + math + + + + + io\binding + + + io\binding + + + io + + + io + + + io + + + io + + + io + + + io\binding + + + io\binding + + + io + + + io\binding + + + threading + + + threading + + + threading + + + threading + + + threading + + + threading + + + io + + + threading + + + threading\binding + + + threading\binding + + + io\binding + + + math + + + threading + + + io + + + threading + + + io + + + + + exceptions + + + math + + + math + + + math + + + math + + + math + + + math + + + math + + + math + + + math + + + scripting + + + + + + + + + + + io + + + io + + + io + + + io + + + io + + + io + + + io + + + threading + + + threading + + + threading + + + threading + + + threading + + + threading + + + io + + + threading + + + math + + + scripting + + + threading + + + io + + + threading + + + io + + + + + math + + + math + + + math + + + math + + + \ No newline at end of file diff --git a/build/modules/asura-utils/asura-utils.vcxproj.user b/build/modules/asura-utils/asura-utils.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-utils/asura-utils.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/modules/asura-xml/asura-xml.vcxproj b/build/modules/asura-xml/asura-xml.vcxproj new file mode 100644 index 0000000..112bc8f --- /dev/null +++ b/build/modules/asura-xml/asura-xml.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {AB4F8F4A-73B5-4EFF-BD5D-448A3E39C60A} + asuralibxml + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/build/modules/asura-xml/asura-xml.vcxproj.filters b/build/modules/asura-xml/asura-xml.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/build/modules/asura-xml/asura-xml.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/modules/asura-xml/asura-xml.vcxproj.user b/build/modules/asura-xml/asura-xml.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/modules/asura-xml/asura-xml.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.1-26-g67d0