From 0c391fdbce5a079cf03e483eb6174dd47806163d Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 7 Aug 2019 21:08:47 +0800 Subject: *misc --- Build/modules/asura-base/asura-base.vcxproj | 231 ++++++++++++ .../modules/asura-base/asura-base.vcxproj.filters | 267 ++++++++++++++ Build/modules/asura-base/asura-base.vcxproj.user | 4 + Build/modules/asura-box2d/asura-box2d.vcxproj | 152 ++++++++ .../asura-box2d/asura-box2d.vcxproj.filters | 89 +++++ Build/modules/asura-box2d/asura-box2d.vcxproj.user | 4 + Build/modules/asura-core/asura-core.vcxproj | 272 ++++++++++++++ .../modules/asura-core/asura-core.vcxproj.filters | 409 +++++++++++++++++++++ Build/modules/asura-core/asura-core.vcxproj.user | 4 + Build/modules/asura-fmod/asura-fmod.vcxproj | 124 +++++++ .../modules/asura-fmod/asura-fmod.vcxproj.filters | 14 + Build/modules/asura-fmod/asura-fmod.vcxproj.user | 4 + .../asura-framework/asura-framework.vcxproj | 122 ++++++ .../asura-framework.vcxproj.filters | 2 + .../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 | 20 + Build/modules/asura-json/asura-json.vcxproj.user | 4 + Build/modules/asura-log/asura-log.vcxproj | 122 ++++++ Build/modules/asura-log/asura-log.vcxproj.filters | 2 + Build/modules/asura-log/asura-log.vcxproj.user | 4 + Build/modules/asura-network/asura-network.vcxproj | 125 +++++++ .../asura-network/asura-network.vcxproj.filters | 11 + .../asura-network/asura-network.vcxproj.user | 4 + Build/modules/asura-openal/asura-openal.vcxproj | 142 +++++++ .../asura-openal/asura-openal.vcxproj.filters | 63 ++++ .../modules/asura-openal/asura-openal.vcxproj.user | 4 + Build/modules/asura-plot/asura-plot.vcxproj | 122 ++++++ .../modules/asura-plot/asura-plot.vcxproj.filters | 8 + 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 | 8 + Build/modules/asura-steam/asura-steam.vcxproj.user | 4 + Build/modules/asura-xml/asura-xml.vcxproj | 122 ++++++ Build/modules/asura-xml/asura-xml.vcxproj.filters | 8 + Build/modules/asura-xml/asura-xml.vcxproj.user | 4 + 42 files changed, 3006 insertions(+) create mode 100644 Build/modules/asura-base/asura-base.vcxproj create mode 100644 Build/modules/asura-base/asura-base.vcxproj.filters create mode 100644 Build/modules/asura-base/asura-base.vcxproj.user 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-fmod/asura-fmod.vcxproj create mode 100644 Build/modules/asura-fmod/asura-fmod.vcxproj.filters create mode 100644 Build/modules/asura-fmod/asura-fmod.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-log/asura-log.vcxproj create mode 100644 Build/modules/asura-log/asura-log.vcxproj.filters create mode 100644 Build/modules/asura-log/asura-log.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-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-base/asura-base.vcxproj b/Build/modules/asura-base/asura-base.vcxproj new file mode 100644 index 0000000..89ba183 --- /dev/null +++ b/Build/modules/asura-base/asura-base.vcxproj @@ -0,0 +1,231 @@ + + + + + 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\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(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-base/asura-base.vcxproj.filters b/Build/modules/asura-base/asura-base.vcxproj.filters new file mode 100644 index 0000000..5f639bc --- /dev/null +++ b/Build/modules/asura-base/asura-base.vcxproj.filters @@ -0,0 +1,267 @@ + + + + + {d46782e8-fa86-46be-8e3e-728d313acfed} + + + {3a94ee03-c8db-4d2e-b0b6-5f6ba157580d} + + + {d617f453-4cd1-451b-801d-2f88d0072303} + + + {e63982e2-a2ca-4aa2-be11-f98659586c1f} + + + {2c79a63b-6330-4c76-b70e-b235a4b301d9} + + + {6eb6ffb5-ecd9-408b-a2f4-c14837822850} + + + {b4b078e1-bb8d-4cb3-84b9-963e851be123} + + + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + + Threads\binding + + + Threads\binding + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Utilities + + + Utilities + + + Utilities + + + FileSystem\Binding + + + FileSystem\Binding + + + FileSystem\Binding + + + FileSystem\Binding + + + FileSystem\Binding + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem\Binding + + + + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + Math + + + + + + + + + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + Threads + + + + + Utilities + + + Utilities + + + Utilities + + + Utilities + + + Scripting + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + FileSystem + + + + Math + + + + + Math + + + Math + + + Math + + + Math + + + \ No newline at end of file diff --git a/Build/modules/asura-base/asura-base.vcxproj.user b/Build/modules/asura-base/asura-base.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/modules/asura-base/asura-base.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/modules/asura-box2d/asura-box2d.vcxproj b/Build/modules/asura-box2d/asura-box2d.vcxproj new file mode 100644 index 0000000..b41df12 --- /dev/null +++ b/Build/modules/asura-box2d/asura-box2d.vcxproj @@ -0,0 +1,152 @@ + + + + + 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 + $(SolutionDir)..\source\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + 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..5415a04 --- /dev/null +++ b/Build/modules/asura-box2d/asura-box2d.vcxproj.filters @@ -0,0 +1,89 @@ + + + + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + Physics + + + + + {c01b5c57-f3a7-445f-aed3-e0a27dbe74c2} + + + {3fb6587c-0c9d-4f6e-9e72-653032d9b238} + + + + + Physics\binding + + + Physics\binding + + + + \ 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..f548922 --- /dev/null +++ b/Build/modules/asura-core/asura-core.vcxproj @@ -0,0 +1,272 @@ + + + + + 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 + + + StaticLibrary + true + v141 + MultiByte + + + StaticLibrary + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)..\Bin\win64 + + + $(SolutionDir)..\Bin\win64 + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + -D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + -D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions) + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {c0ed7d78-570b-454a-b3b6-576fdcb43d69} + + + {208b9cb8-2101-42a9-9502-0cf54912bc57} + + + {6ba52bbb-8da5-4f51-be3f-1e49f5089498} + + + {7d41093f-e356-4c5b-a25f-41779bf86e54} + + + + + + + + + + \ 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..cf39389 --- /dev/null +++ b/Build/modules/asura-core/asura-core.vcxproj.filters @@ -0,0 +1,409 @@ + + + + + {a338aae6-b932-4a59-9a2e-f07283aaea64} + + + {4f6b2c19-1a06-48c9-b89d-52fa27bec5c1} + + + {3a06866e-ed35-485f-94a5-548b522fd1f4} + + + {5061f7d5-03a9-480a-83eb-35d9806abde3} + + + {43e14e72-d4cb-47b8-b55c-7327a6fc0508} + + + {18c6a104-a8f9-4794-80a0-2fe9afdfca3e} + + + {66e43743-1be3-414a-9f3c-473d40613892} + + + {0a758ae6-91a0-462a-968f-aa3412a714ae} + + + {1a6ed8b6-908c-458d-a036-1ff57db1248a} + + + {81dedac2-8d27-4c19-bf40-1503f0dbad1b} + + + {7a73607c-8da6-4865-a992-5c7c8764bd5a} + + + {139aa01b-d038-4361-9edd-f81d8ba37730} + + + {05477a0e-f70b-4606-ae96-82ef7a7b8a1d} + + + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Window\binding + + + Image\binding + + + Image\binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Graphics\Binding + + + Font + + + Font + + + Font + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Image + + + Image + + + Image + + + Image + + + Input + + + Input + + + Input + + + Mesh + + + Mesh + + + Mesh + + + Mesh + + + Profiler + + + Profiler + + + Time + + + Window + + + Window + + + Window + + + Window + + + + + Threads + + + Threads + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Input + + + Input + + + Graphics\Binding + + + + + Font + + + Font + + + Font + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Image + + + Image + + + Image + + + Image + + + Image + + + Input + + + Input + + + Input + + + Input + + + Input + + + Input + + + Input + + + Mesh + + + Mesh + + + Mesh + + + Mesh + + + Profiler + + + Profiler + + + Time + + + Window + + + Window + + + Window + + + Window + + + + + + Threads + + + Threads + + + Font + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Graphics + + + Input + + + Input + + + + + Font + + + Font + + + \ 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-fmod/asura-fmod.vcxproj b/Build/modules/asura-fmod/asura-fmod.vcxproj new file mode 100644 index 0000000..3852905 --- /dev/null +++ b/Build/modules/asura-fmod/asura-fmod.vcxproj @@ -0,0 +1,124 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + + + + + 15.0 + {CC451230-39E1-403A-8E1F-C3E7982049E5} + asurafmod + 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-fmod/asura-fmod.vcxproj.filters b/Build/modules/asura-fmod/asura-fmod.vcxproj.filters new file mode 100644 index 0000000..66b3669 --- /dev/null +++ b/Build/modules/asura-fmod/asura-fmod.vcxproj.filters @@ -0,0 +1,14 @@ + + + + + {f6eae779-a9f2-4f5f-a62b-5d0fbf4cdc1b} + + + + + Audio + + + + \ No newline at end of file diff --git a/Build/modules/asura-fmod/asura-fmod.vcxproj.user b/Build/modules/asura-fmod/asura-fmod.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/modules/asura-fmod/asura-fmod.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..9cd8510 --- /dev/null +++ b/Build/modules/asura-framework/asura-framework.vcxproj.filters @@ -0,0 +1,2 @@ + + \ 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..64af220 --- /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\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(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..7f255cb --- /dev/null +++ b/Build/modules/asura-json/asura-json.vcxproj.filters @@ -0,0 +1,20 @@ + + + + + {2884af6d-6bc5-4714-8b32-32edd8099000} + + + + + Json + + + + + + Json + + + + \ 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-log/asura-log.vcxproj b/Build/modules/asura-log/asura-log.vcxproj new file mode 100644 index 0000000..51e0383 --- /dev/null +++ b/Build/modules/asura-log/asura-log.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {11619483-427E-490F-9E82-4FED3591E93F} + asuralog + 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-log/asura-log.vcxproj.filters b/Build/modules/asura-log/asura-log.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/Build/modules/asura-log/asura-log.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Build/modules/asura-log/asura-log.vcxproj.user b/Build/modules/asura-log/asura-log.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/modules/asura-log/asura-log.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..f18b768 --- /dev/null +++ b/Build/modules/asura-network/asura-network.vcxproj @@ -0,0 +1,125 @@ + + + + + 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\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(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..67825d4 --- /dev/null +++ b/Build/modules/asura-network/asura-network.vcxproj.filters @@ -0,0 +1,11 @@ + + + + + {c48e682b-c747-4a26-aabc-98e5d05c179c} + + + + + + \ 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..5a9ae35 --- /dev/null +++ b/Build/modules/asura-openal/asura-openal.vcxproj @@ -0,0 +1,142 @@ + + + + + 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\external;$(SolutionDir)..\source\modules;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\external;$(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..23e13cd --- /dev/null +++ b/Build/modules/asura-openal/asura-openal.vcxproj.filters @@ -0,0 +1,63 @@ + + + + + {35f52c38-26da-43eb-9ca2-8c5d32f38b37} + + + {dbd7324a-d1b4-4370-ba8d-df87b31d984c} + + + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + Audio + + + \ 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..b4068b5 --- /dev/null +++ b/Build/modules/asura-plot/asura-plot.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + {0f829a34-bb64-4d78-b97a-32c6679fc43b} + + + \ 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..aa62925 --- /dev/null +++ b/Build/modules/asura-steam/asura-steam.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + {73580bc7-0dec-4284-a31a-9a84f284326a} + + + \ 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-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..d8f61eb --- /dev/null +++ b/Build/modules/asura-xml/asura-xml.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + {d8671556-9eb0-4627-a264-e7b667109bc4} + + + \ 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