2025-03-18 15:16:16 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets= "Build" ToolsVersion= "17.0" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
<ItemGroup Label= "ProjectConfigurations" >
<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" >
<ProjectGuid > {F8B4568B-E065-48AF-916E-0A59A05C86CC}</ProjectGuid>
<Keyword > QtVS_v304</Keyword>
<WindowsTargetPlatformVersion Condition= "'$(Configuration)|$(Platform)' == 'Debug|x64'" > 10.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion Condition= "'$(Configuration)|$(Platform)' == 'Release|x64'" > 10.0</WindowsTargetPlatformVersion>
<QtMsBuild Condition= "'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')" > $(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Debug|x64'" Label= "Configuration" >
<ConfigurationType > Application</ConfigurationType>
<PlatformToolset > v143</PlatformToolset>
<UseDebugLibraries > true</UseDebugLibraries>
<CharacterSet > Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Release|x64'" Label= "Configuration" >
<ConfigurationType > Application</ConfigurationType>
<PlatformToolset > v143</PlatformToolset>
<UseDebugLibraries > false</UseDebugLibraries>
<WholeProgramOptimization > true</WholeProgramOptimization>
<CharacterSet > Unicode</CharacterSet>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Condition= "Exists('$(QtMsBuild)\qt_defaults.props')" >
<Import Project= "$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Debug|x64'" Label= "QtSettings" >
<QtInstall > qt5_applications_Qt</QtInstall>
<QtModules > core;gui;widgets</QtModules>
<QtBuildConfig > debug</QtBuildConfig>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Release|x64'" Label= "QtSettings" >
2025-04-15 11:06:31 +00:00
<QtInstall > tools_qt5</QtInstall>
2025-03-18 15:16:16 +00:00
<QtModules > core;opengl;network;gui;help;widgets;location;webchannel;websockets;webengine;datavisualization;networkauth;remoteobjects</QtModules>
<QtBuildConfig > release</QtBuildConfig>
</PropertyGroup>
<Target Name= "QtMsBuildNotFound" BeforeTargets= "CustomBuild;ClCompile" Condition= "!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')" >
<Message Importance= "High" Text= "QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." />
</Target>
<ImportGroup Label= "ExtensionSettings" />
<ImportGroup Label= "Shared" />
<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" />
<Import Project= "$(QtMsBuild)\Qt.props" />
</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" />
<Import Project= "$(QtMsBuild)\Qt.props" />
</ImportGroup>
<PropertyGroup Label= "UserMacros" />
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Debug|x64'" >
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Release|x64'" >
</PropertyGroup>
<ItemDefinitionGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<DebugInformationFormat > EditAndContinue</DebugInformationFormat>
<WholeProgramOptimization > false</WholeProgramOptimization>
<Optimization > Disabled</Optimization>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition= "'$(Configuration)|$(Platform)' == 'Debug|x64'" Label= "Configuration" >
<ClCompile >
<MultiProcessorCompilation > true</MultiProcessorCompilation>
<WarningLevel > Level3</WarningLevel>
<SDLCheck > true</SDLCheck>
<ConformanceMode > true</ConformanceMode>
</ClCompile>
<Link >
<SubSystem > Console</SubSystem>
<GenerateDebugInformation > true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition= "'$(Configuration)|$(Platform)' == 'Release|x64'" Label= "Configuration" >
<ClCompile >
<MultiProcessorCompilation > true</MultiProcessorCompilation>
<WarningLevel > Level3</WarningLevel>
<SDLCheck > true</SDLCheck>
<ConformanceMode > true</ConformanceMode>
<FunctionLevelLinking > true</FunctionLevelLinking>
<IntrinsicFunctions > true</IntrinsicFunctions>
</ClCompile>
<Link >
<SubSystem > Console</SubSystem>
2025-04-15 11:06:31 +00:00
<GenerateDebugInformation > DebugFull</GenerateDebugInformation>
2025-03-18 15:16:16 +00:00
<EnableCOMDATFolding > true</EnableCOMDATFolding>
<OptimizeReferences > true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup >
<ClCompile Include= "DialogSubmitTaskResult.cpp" />
<ClCompile Include= "DialogTaskOrder.cpp" />
<ClCompile Include= "LAMPTaskManagerMainWindows.cpp" />
<ClCompile Include= "LAMPWBDDManager.cpp" />
<ClCompile Include= "main.cpp" />
2025-04-15 11:06:31 +00:00
<ClCompile Include= "SarUploadDialog.cpp" />
2025-03-18 15:16:16 +00:00
<ClCompile Include= "TaskOrder.cpp" />
</ItemGroup>
<ItemGroup >
2025-04-15 11:06:31 +00:00
<QtMoc Include= "SarUploadDialog.h" />
2025-03-18 15:16:16 +00:00
<QtMoc Include= "DialogTaskOrder.h" />
<QtMoc Include= "LAMPTaskManagerMainWindows.h" />
<QtMoc Include= "DialogSubmitTaskResult.h" />
<ClInclude Include= "LAMPWBDDManager.h" />
<QtMoc Include= "TaskOrder.h" />
</ItemGroup>
<ItemGroup >
<QtUic Include= "DialogSubmitTaskResult.ui" />
<QtUic Include= "DialogTaskOrder.ui" />
<QtUic Include= "LAMPTaskManagerMainWindows.ui" />
2025-04-15 11:06:31 +00:00
<QtUic Include= "SarUploadDialog.ui" />
2025-03-18 15:16:16 +00:00
</ItemGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition= "Exists('$(QtMsBuild)\qt.targets')" >
<Import Project= "$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label= "ExtensionTargets" >
</ImportGroup>
</Project>