增加了场景范围输入
parent
2d045747eb
commit
5037196c70
|
@ -62,7 +62,7 @@
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
@ -134,6 +134,7 @@
|
||||||
<IncludePath>./BaseTool;$(IncludePath)</IncludePath>
|
<IncludePath>./BaseTool;$(IncludePath)</IncludePath>
|
||||||
<CopyLocalProjectReference>true</CopyLocalProjectReference>
|
<CopyLocalProjectReference>true</CopyLocalProjectReference>
|
||||||
<CopyCppRuntimeToOutputDir>true</CopyCppRuntimeToOutputDir>
|
<CopyCppRuntimeToOutputDir>true</CopyCppRuntimeToOutputDir>
|
||||||
|
<LibraryPath>D:\Programme\LAMPPublishDatabaseExtractProgram\LAMPPublishDatabaseExtractProgramMain\x64\Release;D:\vcpkg\installed\x64-windows\lib\manual-link;D:\vcpkg\installed\x64-windows\lib;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64)</LibraryPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
|
||||||
<IncludePath>./BaseTool;$(IncludePath)</IncludePath>
|
<IncludePath>./BaseTool;$(IncludePath)</IncludePath>
|
||||||
|
|
|
@ -7,14 +7,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//#ifdef BASECONSTVARIABLE_API
|
||||||
|
//#define BASECONSTVARIABLEAPI __declspec(dllexport)
|
||||||
|
//#else
|
||||||
|
//#define BASECONSTVARIABLEAPI __declspec(dllimport)
|
||||||
|
//#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef BASECONSTVARIABLE_API
|
#ifdef BASECONSTVARIABLE_API
|
||||||
#define BASECONSTVARIABLEAPI __declspec(dllexport)
|
#define BASECONSTVARIABLEAPI
|
||||||
#else
|
#else
|
||||||
#define BASECONSTVARIABLEAPI __declspec(dllimport)
|
#define BASECONSTVARIABLEAPI
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** 定义常见文件格式*********/
|
/** 定义常见文件格式*********/
|
||||||
#define ENVI_FILE_FORMAT_FILTER u8"ALL File(*.*);;ENVI Bin(*.bin);;ENVI Data(*.dat);;ENVI Data(*.data);;tiff影像(*.tif);;tiff影像(*.tiff)"
|
#define ENVI_FILE_FORMAT_FILTER u8"ALL File(*.*);;ENVI Bin(*.bin);;ENVI Data(*.dat);;ENVI Data(*.data);;tiff影像(*.tif);;tiff影像(*.tiff)"
|
||||||
#define XML_FILE_FORMAT_FILTER u8"ALL File(*.*);;XML File(*.xml);;tiff影像(*.tiff)"
|
#define XML_FILE_FORMAT_FILTER u8"ALL File(*.*);;XML File(*.xml);;tiff影像(*.tiff)"
|
||||||
|
@ -54,9 +59,6 @@ inline char* get_cur_time() {
|
||||||
|
|
||||||
#define PRINT(fmt, ...) printf("%s " fmt, get_cur_time(), ##__VA_ARGS__);
|
#define PRINT(fmt, ...) printf("%s " fmt, get_cur_time(), ##__VA_ARGS__);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define MATPLOTDRAWIMAGE
|
#define MATPLOTDRAWIMAGE
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue