From 2877e6b939b64b33c119997288bba42f86a06776 Mon Sep 17 00:00:00 2001 From: chai Date: Sat, 11 Aug 2018 12:06:55 +0800 Subject: *initialize --- Build/.vs/OrdosGUI/v15/.suo | Bin 0 -> 23552 bytes Build/.vs/OrdosGUI/v15/Browse.VC.db | Bin 0 -> 34029568 bytes .../Examples_01_HelloWorld.vcxproj | 122 ++++++++++++++ .../Examples_01_HelloWorld.vcxproj.filters | 17 ++ .../Examples_01_HelloWorld.vcxproj.user | 4 + Build/Ordos-lua/Ordos-lua.vcxproj | 122 ++++++++++++++ Build/Ordos-lua/Ordos-lua.vcxproj.filters | 17 ++ Build/Ordos-lua/Ordos-lua.vcxproj.user | 4 + Build/Ordos/Ordos.vcxproj | 127 +++++++++++++++ Build/Ordos/Ordos.vcxproj.filters | 24 +++ Build/Ordos/Ordos.vcxproj.user | 4 + Build/OrdosGUI.sln | 84 ++++++++++ Build/OrdosGUI.vcxproj | 122 ++++++++++++++ Build/OrdosGUI.vcxproj.filters | 17 ++ Build/OrdosGUI.vcxproj.user | 4 + Build/lua51/lua51.vcxproj | 177 ++++++++++++++++++++ Build/lua51/lua51.vcxproj.filters | 180 +++++++++++++++++++++ Build/lua51/lua51.vcxproj.user | 4 + Build/luax/luax.vcxproj | 122 ++++++++++++++ Build/luax/luax.vcxproj.filters | 17 ++ Build/luax/luax.vcxproj.user | 4 + 21 files changed, 1172 insertions(+) create mode 100644 Build/.vs/OrdosGUI/v15/.suo create mode 100644 Build/.vs/OrdosGUI/v15/Browse.VC.db create mode 100644 Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj create mode 100644 Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.filters create mode 100644 Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.user create mode 100644 Build/Ordos-lua/Ordos-lua.vcxproj create mode 100644 Build/Ordos-lua/Ordos-lua.vcxproj.filters create mode 100644 Build/Ordos-lua/Ordos-lua.vcxproj.user create mode 100644 Build/Ordos/Ordos.vcxproj create mode 100644 Build/Ordos/Ordos.vcxproj.filters create mode 100644 Build/Ordos/Ordos.vcxproj.user create mode 100644 Build/OrdosGUI.sln create mode 100644 Build/OrdosGUI.vcxproj create mode 100644 Build/OrdosGUI.vcxproj.filters create mode 100644 Build/OrdosGUI.vcxproj.user create mode 100644 Build/lua51/lua51.vcxproj create mode 100644 Build/lua51/lua51.vcxproj.filters create mode 100644 Build/lua51/lua51.vcxproj.user create mode 100644 Build/luax/luax.vcxproj create mode 100644 Build/luax/luax.vcxproj.filters create mode 100644 Build/luax/luax.vcxproj.user (limited to 'Build') diff --git a/Build/.vs/OrdosGUI/v15/.suo b/Build/.vs/OrdosGUI/v15/.suo new file mode 100644 index 0000000..f64d98c Binary files /dev/null and b/Build/.vs/OrdosGUI/v15/.suo differ diff --git a/Build/.vs/OrdosGUI/v15/Browse.VC.db b/Build/.vs/OrdosGUI/v15/Browse.VC.db new file mode 100644 index 0000000..ab67c94 Binary files /dev/null and b/Build/.vs/OrdosGUI/v15/Browse.VC.db differ diff --git a/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj new file mode 100644 index 0000000..710ecc4 --- /dev/null +++ b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8} + Examples01HelloWorld + 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/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.filters b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.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/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.user b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/Examples_01_HelloWorld/Examples_01_HelloWorld.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/Ordos-lua/Ordos-lua.vcxproj b/Build/Ordos-lua/Ordos-lua.vcxproj new file mode 100644 index 0000000..d9162e2 --- /dev/null +++ b/Build/Ordos-lua/Ordos-lua.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {7D0EFFCD-132D-4713-AA74-C6588397DE27} + Ordoslua + 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/Ordos-lua/Ordos-lua.vcxproj.filters b/Build/Ordos-lua/Ordos-lua.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/Build/Ordos-lua/Ordos-lua.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/Ordos-lua/Ordos-lua.vcxproj.user b/Build/Ordos-lua/Ordos-lua.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/Ordos-lua/Ordos-lua.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/Ordos/Ordos.vcxproj b/Build/Ordos/Ordos.vcxproj new file mode 100644 index 0000000..48985c6 --- /dev/null +++ b/Build/Ordos/Ordos.vcxproj @@ -0,0 +1,127 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {C1099725-6F4C-475F-99CA-7E18EBCF6767} + Ordos + 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/Ordos/Ordos.vcxproj.filters b/Build/Ordos/Ordos.vcxproj.filters new file mode 100644 index 0000000..325e685 --- /dev/null +++ b/Build/Ordos/Ordos.vcxproj.filters @@ -0,0 +1,24 @@ + + + + + {539229f7-60f3-4c8b-82ee-41215ec2486a} + + + {ad4f78d8-5b3a-4dbf-b2de-6c4aa1d8d832} + + + + + Source + + + Source + + + + + Include + + + \ No newline at end of file diff --git a/Build/Ordos/Ordos.vcxproj.user b/Build/Ordos/Ordos.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/Ordos/Ordos.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/OrdosGUI.sln b/Build/OrdosGUI.sln new file mode 100644 index 0000000..54b7fb1 --- /dev/null +++ b/Build/OrdosGUI.sln @@ -0,0 +1,84 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2047 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3rdParty", "3rdParty", "{03BA9D75-D4B7-42F3-8F76-8BEA12506228}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "luax", "luax\luax.vcxproj", "{6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Ordos", "Ordos", "{732293C3-B7B0-4DD0-8005-409EEC128213}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ordos", "Ordos\Ordos.vcxproj", "{C1099725-6F4C-475F-99CA-7E18EBCF6767}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ordos-lua", "Ordos-lua\Ordos-lua.vcxproj", "{7D0EFFCD-132D-4713-AA74-C6588397DE27}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{02FAD289-0ABD-45B7-8955-16437940EF81}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Examples_01_HelloWorld", "Examples_01_HelloWorld\Examples_01_HelloWorld.vcxproj", "{5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua51", "lua51\lua51.vcxproj", "{23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Debug|x64.ActiveCfg = Debug|x64 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Debug|x64.Build.0 = Debug|x64 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Debug|x86.ActiveCfg = Debug|Win32 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Debug|x86.Build.0 = Debug|Win32 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Release|x64.ActiveCfg = Release|x64 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Release|x64.Build.0 = Release|x64 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Release|x86.ActiveCfg = Release|Win32 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6}.Release|x86.Build.0 = Release|Win32 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Debug|x64.ActiveCfg = Debug|x64 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Debug|x64.Build.0 = Debug|x64 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Debug|x86.ActiveCfg = Debug|Win32 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Debug|x86.Build.0 = Debug|Win32 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Release|x64.ActiveCfg = Release|x64 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Release|x64.Build.0 = Release|x64 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Release|x86.ActiveCfg = Release|Win32 + {C1099725-6F4C-475F-99CA-7E18EBCF6767}.Release|x86.Build.0 = Release|Win32 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Debug|x64.ActiveCfg = Debug|x64 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Debug|x64.Build.0 = Debug|x64 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Debug|x86.ActiveCfg = Debug|Win32 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Debug|x86.Build.0 = Debug|Win32 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Release|x64.ActiveCfg = Release|x64 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Release|x64.Build.0 = Release|x64 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Release|x86.ActiveCfg = Release|Win32 + {7D0EFFCD-132D-4713-AA74-C6588397DE27}.Release|x86.Build.0 = Release|Win32 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Debug|x64.ActiveCfg = Debug|x64 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Debug|x64.Build.0 = Debug|x64 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Debug|x86.ActiveCfg = Debug|Win32 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Debug|x86.Build.0 = Debug|Win32 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Release|x64.ActiveCfg = Release|x64 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Release|x64.Build.0 = Release|x64 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Release|x86.ActiveCfg = Release|Win32 + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8}.Release|x86.Build.0 = Release|Win32 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Debug|x64.ActiveCfg = Debug|x64 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Debug|x64.Build.0 = Debug|x64 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Debug|x86.ActiveCfg = Debug|Win32 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Debug|x86.Build.0 = Debug|Win32 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Release|x64.ActiveCfg = Release|x64 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Release|x64.Build.0 = Release|x64 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Release|x86.ActiveCfg = Release|Win32 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6} = {03BA9D75-D4B7-42F3-8F76-8BEA12506228} + {C1099725-6F4C-475F-99CA-7E18EBCF6767} = {732293C3-B7B0-4DD0-8005-409EEC128213} + {7D0EFFCD-132D-4713-AA74-C6588397DE27} = {732293C3-B7B0-4DD0-8005-409EEC128213} + {5825DA3A-288F-4C09-9F5A-BD3038D5ADC8} = {02FAD289-0ABD-45B7-8955-16437940EF81} + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB} = {03BA9D75-D4B7-42F3-8F76-8BEA12506228} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {80D970E4-35BB-4915-B796-31A471050B61} + EndGlobalSection +EndGlobal diff --git a/Build/OrdosGUI.vcxproj b/Build/OrdosGUI.vcxproj new file mode 100644 index 0000000..367ca9e --- /dev/null +++ b/Build/OrdosGUI.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {0A26DB4D-AC2F-4045-B25A-563C07DF55AA} + OrdosGUI + 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/OrdosGUI.vcxproj.filters b/Build/OrdosGUI.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/Build/OrdosGUI.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/OrdosGUI.vcxproj.user b/Build/OrdosGUI.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/OrdosGUI.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/lua51/lua51.vcxproj b/Build/lua51/lua51.vcxproj new file mode 100644 index 0000000..3197451 --- /dev/null +++ b/Build/lua51/lua51.vcxproj @@ -0,0 +1,177 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {23B3BE5C-80B7-4874-A67C-556C3AD3D0BB} + lua51 + 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/lua51/lua51.vcxproj.filters b/Build/lua51/lua51.vcxproj.filters new file mode 100644 index 0000000..aaf168d --- /dev/null +++ b/Build/lua51/lua51.vcxproj.filters @@ -0,0 +1,180 @@ + + + + + {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/lua51/lua51.vcxproj.user b/Build/lua51/lua51.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/lua51/lua51.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Build/luax/luax.vcxproj b/Build/luax/luax.vcxproj new file mode 100644 index 0000000..6d2aa20 --- /dev/null +++ b/Build/luax/luax.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {6DA4B4A7-C3B2-47F9-94C3-CFDF2F78ACA6} + luax + 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/luax/luax.vcxproj.filters b/Build/luax/luax.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/Build/luax/luax.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/luax/luax.vcxproj.user b/Build/luax/luax.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/Build/luax/luax.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.1-26-g67d0