-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6,514 changed files
with
2,842,187 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<CustomBuild Include="G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeLists.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
cmake_minimum_required(VERSION 2.8.12) | ||
|
||
set(CMAKE_DEBUG_POSTFIX "d") | ||
|
||
project(asl) | ||
|
||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) | ||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) | ||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) | ||
set(CMAKE_MACOSX_RPATH ON) | ||
|
||
set(ASL_VERSION 1.11.9) | ||
|
||
if(POLICY CMP0077) | ||
cmake_policy(SET CMP0077 NEW) | ||
endif() | ||
|
||
if(NOT MSVC) | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3") | ||
if((CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.4") OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" ) | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") | ||
endif() | ||
else() | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") | ||
endif() | ||
|
||
set_property(GLOBAL PROPERTY USE_FOLDERS ON) | ||
|
||
if(CMAKE_SOURCE_DIR STREQUAL ${CMAKE_CURRENT_SOURCE_DIR} AND NOT ANDROID) | ||
set(ASL_BUILD_SHARED_HINT ON) | ||
else() | ||
set(ASL_BUILD_SHARED_HINT OFF) | ||
endif() | ||
|
||
option(ASL_USE_LOCAL8BIT "Treat char strings as local 8 bit instead of UTF8 when converting wchar_t strings") | ||
option(ASL_TLS "TLS Sockets") | ||
option(ASL_BUILD_STATIC "Build static library" ON) | ||
option(ASL_BUILD_SHARED "Build shared library" ${ASL_BUILD_SHARED_HINT}) | ||
option(ASL_IPV6 "Expect also IPv6 when looking up DNS names") | ||
option(ASL_SAMPLES "Build samples") | ||
option(ASL_TESTS "Build tests") | ||
|
||
|
||
if(ASL_TLS) | ||
if(TARGET MbedTLS::mbedtls) | ||
set(mbedTLS_LIB MbedTLS::mbedtls) | ||
set(mbedTLSx509_LIB MbedTLS::mbedx509) | ||
set(mbedTLScrypto_LIB MbedTLS::mbedcrypto) | ||
else() | ||
find_path(mbedTLS_DIR "include/mbedtls") | ||
if(mbedTLS_DIR STREQUAL mbedTLS_DIR-NOTFOUND ) | ||
message(FATAL_ERROR "TLS needs the directory of mbedTLS" ) | ||
endif() | ||
include_directories(${mbedTLS_DIR}/include) | ||
find_library(mbedTLS_LIB mbedtls ${mbedTLS_DIR}/lib) | ||
find_library(mbedTLSx509_LIB mbedx509 ${mbedTLS_DIR}/lib) | ||
find_library(mbedTLScrypto_LIB mbedcrypto ${mbedTLS_DIR}/lib) | ||
endif() | ||
endif() | ||
|
||
set(TARGETS "") | ||
|
||
add_subdirectory(src) | ||
|
||
if(ASL_SAMPLES) | ||
add_subdirectory(samples) | ||
endif() | ||
|
||
if(ASL_TESTS) | ||
enable_testing() | ||
add_subdirectory(tests) | ||
endif() | ||
|
||
file(WRITE "${PROJECT_BINARY_DIR}/ASLConfigVersion.cmake" | ||
"set(PACKAGE_VERSION ${ASL_VERSION})\n" | ||
"if(NOT CMAKE_GENERATOR STREQUAL \"${CMAKE_GENERATOR}\" OR (DEFINED CMAKE_GENERATOR_PLATFORM AND NOT CMAKE_GENERATOR_PLATFORM STREQUAL \"${CMAKE_GENERATOR_PLATFORM}\"))\n" | ||
"set(PACKAGE_VERSION_UNSUITABLE TRUE)\nendif()\n" | ||
"if(PACKAGE_FIND_VERSION VERSION_LESS PACKAGE_VERSION OR PACKAGE_FIND_VERSION VERSION_EQUAL PACKAGE_VERSION)\nset(PACKAGE_VERSION_COMPATIBLE TRUE)\nendif()\n" | ||
) | ||
|
||
export(TARGETS ${TARGETS} FILE ASLConfig.cmake) | ||
install(EXPORT asl DESTINATION cmake FILE ASLConfig.cmake) | ||
|
||
if(CMAKE_SOURCE_DIR STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) | ||
export( PACKAGE ASL ) | ||
find_package(Doxygen) | ||
if(DOXYGEN_FOUND AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/doc) | ||
set(ASL_DOC_DIR "${PROJECT_BINARY_DIR}/doc" CACHE PATH "Directory for documentation") | ||
configure_file(doc/doxy.ini doxy2.ini) | ||
add_custom_target(DOC | ||
${DOXYGEN_EXECUTABLE} ${PROJECT_BINARY_DIR}/doxy2.ini | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc | ||
COMMENT "Generating API documentation with Doxygen" VERBATIM | ||
) | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Label="ProjectConfigurations"> | ||
<ProjectConfiguration Include="Debug|Win32"> | ||
<Configuration>Debug</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Release|Win32"> | ||
<Configuration>Release</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="MinSizeRel|Win32"> | ||
<Configuration>MinSizeRel</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="RelWithDebInfo|Win32"> | ||
<Configuration>RelWithDebInfo</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
</ItemGroup> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>{15F50358-312F-3681-8619-C8A1A06A38A0}</ProjectGuid> | ||
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion> | ||
<Keyword>Win32Proj</Keyword> | ||
<Platform>Win32</Platform> | ||
<ProjectName>INSTALL</ProjectName> | ||
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
<ConfigurationType>Utility</ConfigurationType> | ||
<CharacterSet>MultiByte</CharacterSet> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
<ConfigurationType>Utility</ConfigurationType> | ||
<CharacterSet>MultiByte</CharacterSet> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'" Label="Configuration"> | ||
<ConfigurationType>Utility</ConfigurationType> | ||
<CharacterSet>MultiByte</CharacterSet> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'" Label="Configuration"> | ||
<ConfigurationType>Utility</ConfigurationType> | ||
<CharacterSet>MultiByte</CharacterSet> | ||
<PlatformToolset>v141</PlatformToolset> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
<ImportGroup Label="ExtensionSettings"> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup> | ||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion> | ||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> | ||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> | ||
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> | ||
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> | ||
</PropertyGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<Midl> | ||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory> | ||
<HeaderFileName>%(Filename).h</HeaderFileName> | ||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName> | ||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName> | ||
<ProxyFileName>%(Filename)_p.c</ProxyFileName> | ||
</Midl> | ||
<PostBuildEvent> | ||
<Message></Message> | ||
<Command>setlocal | ||
"D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<Midl> | ||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory> | ||
<HeaderFileName>%(Filename).h</HeaderFileName> | ||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName> | ||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName> | ||
<ProxyFileName>%(Filename)_p.c</ProxyFileName> | ||
</Midl> | ||
<PostBuildEvent> | ||
<Message></Message> | ||
<Command>setlocal | ||
"D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'"> | ||
<Midl> | ||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory> | ||
<HeaderFileName>%(Filename).h</HeaderFileName> | ||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName> | ||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName> | ||
<ProxyFileName>%(Filename)_p.c</ProxyFileName> | ||
</Midl> | ||
<PostBuildEvent> | ||
<Message></Message> | ||
<Command>setlocal | ||
"D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'"> | ||
<Midl> | ||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory> | ||
<HeaderFileName>%(Filename).h</HeaderFileName> | ||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName> | ||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName> | ||
<ProxyFileName>%(Filename)_p.c</ProxyFileName> | ||
</Midl> | ||
<PostBuildEvent> | ||
<Message></Message> | ||
<Command>setlocal | ||
"D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
</PostBuildEvent> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<CustomBuild Include="G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\cfc529eab4fd5f5ca88b9790554d0d92\INSTALL_force.rule"> | ||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> </Message> | ||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">setlocal | ||
cd . | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">G:/[WORK]/[OpenSource]/CmdUI/[Common]/asl/CMakeFiles/cfc529eab4fd5f5ca88b9790554d0d92/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs> | ||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\INSTALL_force</Outputs> | ||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</LinkObjects> | ||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> </Message> | ||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">setlocal | ||
cd . | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">G:/[WORK]/[OpenSource]/CmdUI/[Common]/asl/CMakeFiles/cfc529eab4fd5f5ca88b9790554d0d92/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs> | ||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\INSTALL_force</Outputs> | ||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkObjects> | ||
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'"> </Message> | ||
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">setlocal | ||
cd . | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">G:/[WORK]/[OpenSource]/CmdUI/[Common]/asl/CMakeFiles/cfc529eab4fd5f5ca88b9790554d0d92/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs> | ||
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\INSTALL_force</Outputs> | ||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">false</LinkObjects> | ||
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'"> </Message> | ||
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">setlocal | ||
cd . | ||
if %errorlevel% neq 0 goto :cmEnd | ||
:cmEnd | ||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone | ||
:cmErrorLevel | ||
exit /b %1 | ||
:cmDone | ||
if %errorlevel% neq 0 goto :VCEnd</Command> | ||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">G:/[WORK]/[OpenSource]/CmdUI/[Common]/asl/CMakeFiles/cfc529eab4fd5f5ca88b9790554d0d92/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs> | ||
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\INSTALL_force</Outputs> | ||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">false</LinkObjects> | ||
</CustomBuild> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\ZERO_CHECK.vcxproj"> | ||
<Project>{88CE7C82-9986-3BA7-9079-8C179521FAD3}</Project> | ||
<Name>ZERO_CHECK</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\ALL_BUILD.vcxproj"> | ||
<Project>{CACAC07F-02BF-3204-8E6C-0EE31193ED69}</Project> | ||
<Name>ALL_BUILD</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
<ImportGroup Label="ExtensionTargets"> | ||
</ImportGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<CustomBuild Include="G:\[WORK]\[OpenSource]\CmdUI\[Common]\asl\CMakeFiles\cfc529eab4fd5f5ca88b9790554d0d92\INSTALL_force.rule"> | ||
<Filter>CMake Rules</Filter> | ||
</CustomBuild> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Filter Include="CMake Rules"> | ||
<UniqueIdentifier>{C2AAD712-8572-324A-A06F-E04245EB3327}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
MIT License | ||
|
||
Copyright (c) 1999-2023 aslze | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
|
||
ASL can optionally link to the mbedTLS library for supporting secure TLS sockets. | ||
This library specifies: Unless specifically indicated otherwise in a file, files | ||
are licensed under the Apache 2.0 license: | ||
<http://www.apache.org/licenses/LICENSE-2.0.txt> |
Oops, something went wrong.