Commit 10ecb07e authored by jiajunjie's avatar jiajunjie

update helloword windows library for test

parent 6af23d25
/**
* @file helloword.cpp.
*
* @brief
*
* 定义helloword测试接口文件
*
* @copyright
*
* 无锡优波生命科技有限公司
* All Rights Reserved.
*/
#include <string>
#include <iostream>
#include "helloword.h"
using namespace std;
int helloword_test( int value )
{
cout << "******************HELLO WORD*******************" << endl;
cout << "***********************************************" << endl;
cout << "This interface used for test,author by junjie" << endl;
cout << "***********************************************" << endl;
return value;
}
\ No newline at end of file
/**
* @file helloword.h.
*
* @brief
*
* 定义helloword测试接口文件
*
* @copyright
*
* 无锡优波生命科技有限公司
* All Rights Reserved.
*/
#pragma once
extern "C"
{
/**
* @brief helloword 测试接口
*
* @param value 输入值,用于返回,可以不传
*
* @return int 输入后传出的返回值
*/
__declspec(dllexport) int helloword_test(int value=50);
}

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29519.87
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "helloworld", "helloworld.vcxproj", "{304FFF3A-D504-49DF-A578-29DF179FC98E}"
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
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Debug|x64.ActiveCfg = Debug|x64
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Debug|x64.Build.0 = Debug|x64
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Debug|x86.ActiveCfg = Debug|Win32
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Debug|x86.Build.0 = Debug|Win32
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Release|x64.ActiveCfg = Release|x64
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Release|x64.Build.0 = Release|x64
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Release|x86.ActiveCfg = Release|Win32
{304FFF3A-D504-49DF-A578-29DF179FC98E}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {360A20D1-9CE8-4DAF-920A-DD130776EDA8}
EndGlobalSection
EndGlobal
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" 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="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<ProjectGuid>{304FFF3A-D504-49DF-A578-29DF179FC98E}</ProjectGuid>
<RootNamespace>helloworld</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="helloword.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="helloword.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="源文件">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="头文件">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="资源文件">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="helloword.h">
<Filter>头文件</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="helloword.cpp">
<Filter>源文件</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
\ No newline at end of file
 helloword.cpp
E:\BaiduNetdiskDownload\opencv4.1LIB\helloworld\helloworld\helloword.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
helloworld.vcxproj -> E:\BaiduNetdiskDownload\opencv4.1LIB\helloworld\helloworld\x64\Release\helloworld.lib
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\HELLOWORD.CPP
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0
Release|x64|E:\BaiduNetdiskDownload\opencv4.1LIB\helloworld\helloworld\|
B^E:\BaiduNetdiskDownload\opencv4.1LIB\helloworld\helloworld\helloworld.vcxproj B^E:\BaiduNetdiskDownload\opencv4.1LIB\helloworld\helloworld\helloworld.vcxproj
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ B^E:\BAIDUNETDISKDOWNLOAD\OPENCV4.1LIB\HELLOWORLD\HELLOWORLD\X64\RELEASE\HELLOWORD.OBJ
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment