From 82956beb1fe17e1226327638c8ab22b5f5adfc1d Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 20 Mar 2019 22:43:25 +0800 Subject: *misc --- build/libs/asura-lib-core/asura-lib-core.vcxproj | 5 +- .../asura-lib-core/asura-lib-core.vcxproj.filters | 9 +- build/libs/asura-lib-json/asura-lib-json.vcxproj | 2 + build/libs/asura-lib-log/asura-lib-log.vcxproj | 122 +++++++++++++++++++++ .../asura-lib-log/asura-lib-log.vcxproj.filters | 17 +++ .../libs/asura-lib-log/asura-lib-log.vcxproj.user | 4 + build/libs/asura-lib-utils/asura-lib-utils.vcxproj | 1 - .../asura-lib-utils.vcxproj.filters | 5 +- build/libs/asura-lib-xml/asura-lib-xml.vcxproj | 122 +++++++++++++++++++++ .../asura-lib-xml/asura-lib-xml.vcxproj.filters | 17 +++ .../libs/asura-lib-xml/asura-lib-xml.vcxproj.user | 4 + 11 files changed, 299 insertions(+), 9 deletions(-) create mode 100644 build/libs/asura-lib-log/asura-lib-log.vcxproj create mode 100644 build/libs/asura-lib-log/asura-lib-log.vcxproj.filters create mode 100644 build/libs/asura-lib-log/asura-lib-log.vcxproj.user create mode 100644 build/libs/asura-lib-xml/asura-lib-xml.vcxproj create mode 100644 build/libs/asura-lib-xml/asura-lib-xml.vcxproj.filters create mode 100644 build/libs/asura-lib-xml/asura-lib-xml.vcxproj.user (limited to 'build/libs') diff --git a/build/libs/asura-lib-core/asura-lib-core.vcxproj b/build/libs/asura-lib-core/asura-lib-core.vcxproj index 62d3815..a5dd696 100644 --- a/build/libs/asura-lib-core/asura-lib-core.vcxproj +++ b/build/libs/asura-lib-core/asura-lib-core.vcxproj @@ -120,6 +120,7 @@ + @@ -162,12 +163,12 @@ - + - + diff --git a/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters b/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters index 2948753..ae0aace 100644 --- a/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters +++ b/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters @@ -150,10 +150,12 @@ client\sdl + + client\sdl + - @@ -268,9 +270,12 @@ client\sdl - + + client\sdl + + diff --git a/build/libs/asura-lib-json/asura-lib-json.vcxproj b/build/libs/asura-lib-json/asura-lib-json.vcxproj index 7a2d92d..168ea89 100644 --- a/build/libs/asura-lib-json/asura-lib-json.vcxproj +++ b/build/libs/asura-lib-json/asura-lib-json.vcxproj @@ -76,6 +76,7 @@ Disabled true true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\libs;%(AdditionalIncludeDirectories) @@ -108,6 +109,7 @@ true true true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\libs;%(AdditionalIncludeDirectories) true diff --git a/build/libs/asura-lib-log/asura-lib-log.vcxproj b/build/libs/asura-lib-log/asura-lib-log.vcxproj new file mode 100644 index 0000000..3f891f1 --- /dev/null +++ b/build/libs/asura-lib-log/asura-lib-log.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {73B0F8AB-EF5A-412A-9E34-0FD2574766B7} + asuraliblog + 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/libs/asura-lib-log/asura-lib-log.vcxproj.filters b/build/libs/asura-lib-log/asura-lib-log.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/libs/asura-lib-log/asura-lib-log.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/libs/asura-lib-log/asura-lib-log.vcxproj.user b/build/libs/asura-lib-log/asura-lib-log.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/libs/asura-lib-log/asura-lib-log.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj index 7e3d4a4..094fcb8 100644 --- a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj +++ b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj @@ -145,7 +145,6 @@ - diff --git a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters index 94c9497..86bd1ff 100644 --- a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters +++ b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters @@ -93,16 +93,13 @@ math - - scripting - scripting - + diff --git a/build/libs/asura-lib-xml/asura-lib-xml.vcxproj b/build/libs/asura-lib-xml/asura-lib-xml.vcxproj new file mode 100644 index 0000000..112bc8f --- /dev/null +++ b/build/libs/asura-lib-xml/asura-lib-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/libs/asura-lib-xml/asura-lib-xml.vcxproj.filters b/build/libs/asura-lib-xml/asura-lib-xml.vcxproj.filters new file mode 100644 index 0000000..3c6f4fd --- /dev/null +++ b/build/libs/asura-lib-xml/asura-lib-xml.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/libs/asura-lib-xml/asura-lib-xml.vcxproj.user b/build/libs/asura-lib-xml/asura-lib-xml.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/libs/asura-lib-xml/asura-lib-xml.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.1-26-g67d0