Commit 8b42ca3f authored by captainwong's avatar captainwong

path helper

parent 72c990cb
...@@ -24,6 +24,7 @@ struct PathHelper ...@@ -24,6 +24,7 @@ struct PathHelper
virtual ~PathHelper() {} virtual ~PathHelper() {}
virtual QString program() const { return programPath_; } virtual QString program() const { return programPath_; }
virtual QString exe() const { return exePath_; }
virtual QString bin() const { return program() + "/bin"; } virtual QString bin() const { return program() + "/bin"; }
virtual QString data() const { return program() + "/data"; } virtual QString data() const { return program() + "/data"; }
virtual QString log() const { return program() + "/log"; } virtual QString log() const { return program() + "/log"; }
...@@ -34,7 +35,10 @@ struct PathHelper ...@@ -34,7 +35,10 @@ struct PathHelper
protected: protected:
// disable constructor // disable constructor
explicit PathHelper() {} explicit PathHelper() {}
//! 应用程序安装目录
QString programPath_ = {}; QString programPath_ = {};
//! 应用程序路径
QString exePath_ = {};
}; };
struct AutoSwithToBin { struct AutoSwithToBin {
...@@ -65,15 +69,9 @@ struct AutoSwithToBin { ...@@ -65,15 +69,9 @@ struct AutoSwithToBin {
struct PathHelperLocal : PathHelper struct PathHelperLocal : PathHelper
{ {
PathHelperLocal() : PathHelper() { PathHelperLocal() : PathHelper() {
struct Helper { exePath_ = QCoreApplication::applicationFilePath();
Helper() { QDir dir(QCoreApplication::applicationDirPath());
QDir dir(QCoreApplication::applicationDirPath()); dir.cdUp(); programPath_ = dir.absolutePath();
dir.cdUp(); path = dir.absolutePath();
}
QString path = {};
};
static Helper helper;
programPath_ = helper.path;
} }
}; };
...@@ -93,15 +91,9 @@ struct PathHelperLocal : PathHelper ...@@ -93,15 +91,9 @@ struct PathHelperLocal : PathHelper
struct PathHelperLocalWithoutBin : PathHelper struct PathHelperLocalWithoutBin : PathHelper
{ {
PathHelperLocalWithoutBin() : PathHelper() { PathHelperLocalWithoutBin() : PathHelper() {
struct Helper { exePath_ = QCoreApplication::applicationFilePath();
Helper() { QDir dir(QCoreApplication::applicationDirPath());
QDir dir(QCoreApplication::applicationDirPath()); programPath_ = dir.absolutePath();
path = dir.absolutePath();
}
QString path = {};
};
static Helper helper;
programPath_ = helper.path;
} }
virtual QString bin() const override { return program(); } virtual QString bin() const override { return program(); }
...@@ -109,7 +101,9 @@ struct PathHelperLocalWithoutBin : PathHelper ...@@ -109,7 +101,9 @@ struct PathHelperLocalWithoutBin : PathHelper
/* /*
* @brief 路径辅助类,数据保存在其他可写目录,如 C:/Users/[USER]/AppData/Roaming * @brief 路径辅助类,数据保存在其他可写目录,如 C:/Users/[USER]/AppData/Roaming
* @note 在调用此类之前先调用 QCoreApplication::setOrganizationName("your-organization-name"); * @note program-name 无需设置,Qt会自动设置
* @note 如果在调用此类之前先调用了 QCoreApplication::setOrganizationName("your-organization-name");
* @note 那么program-name在your-organization-name下
* @note 大致结构树为: * @note 大致结构树为:
* @note |-- program-install-dir * @note |-- program-install-dir
* @note | |-- bin * @note | |-- bin
...@@ -126,20 +120,27 @@ struct PathHelperLocalWithoutBin : PathHelper ...@@ -126,20 +120,27 @@ struct PathHelperLocalWithoutBin : PathHelper
*/ */
struct PathHelperDataSeperated : PathHelperLocal struct PathHelperDataSeperated : PathHelperLocal
{ {
PathHelperDataSeperated() : PathHelperLocal() {} PathHelperDataSeperated(bool useTmpAsLogFolder = false)
: PathHelperLocal(), useTmpAsLogFolder(useTmpAsLogFolder)
{}
virtual QString data() const override { virtual QString data() const override {
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
} }
virtual QString log() const override { return data() + "/log"; } virtual QString log() const override { return useTmpAsLogFolder ? QStandardPaths::writableLocation(QStandardPaths::TempLocation) : (data() + "/log"); }
virtual QString dumps() const override { return data() + "/dumps"; } virtual QString dumps() const override { return data() + "/dumps"; }
virtual QString config() const override { return data() + "/config"; } virtual QString config() const override { return data() + "/config"; }
virtual QString db() const override { return data() + "/db"; } virtual QString db() const override { return data() + "/db"; }
protected:
bool useTmpAsLogFolder = false;
}; };
/* /*
* @brief 路径辅助类,数据保存在其他可写目录,如 C:/Users/[USER]/AppData/Roaming * @brief 路径辅助类,数据保存在其他可写目录,如 C:/Users/[USER]/AppData/Roaming
* @note 在调用此类之前先调用 QCoreApplication::setOrganizationName("your-organization-name"); * @note program-name 无需设置,Qt会自动设置
* @note 如果在调用此类之前先调用了 QCoreApplication::setOrganizationName("your-organization-name");
* @note 那么program-name在your-organization-name下
* @note 大致结构树为: * @note 大致结构树为:
* @note |-- program-install-dir * @note |-- program-install-dir
* @note | |-- program.exe * @note | |-- program.exe
...@@ -155,15 +156,20 @@ struct PathHelperDataSeperated : PathHelperLocal ...@@ -155,15 +156,20 @@ struct PathHelperDataSeperated : PathHelperLocal
*/ */
struct PathHelperDataSeperatedWithoutBin : PathHelperLocalWithoutBin struct PathHelperDataSeperatedWithoutBin : PathHelperLocalWithoutBin
{ {
PathHelperDataSeperatedWithoutBin() : PathHelperLocalWithoutBin() {} PathHelperDataSeperatedWithoutBin(bool useTmpAsLogFolder = false)
: PathHelperLocalWithoutBin(), useTmpAsLogFolder(useTmpAsLogFolder)
{}
virtual QString data() const override { virtual QString data() const override {
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
} }
virtual QString log() const override { return data() + "/log"; } virtual QString log() const override { return useTmpAsLogFolder ? QStandardPaths::writableLocation(QStandardPaths::TempLocation) : (data() + "/log"); }
virtual QString dumps() const override { return data() + "/dumps"; } virtual QString dumps() const override { return data() + "/dumps"; }
virtual QString config() const override { return data() + "/config"; } virtual QString config() const override { return data() + "/config"; }
virtual QString db() const override { return data() + "/db"; } virtual QString db() const override { return data() + "/db"; }
protected:
bool useTmpAsLogFolder = false;
}; };
......
...@@ -44,7 +44,7 @@ protected: ...@@ -44,7 +44,7 @@ protected:
explicit PathHelper() {} explicit PathHelper() {}
//! 应用程序安装目录 //! 应用程序安装目录
std::string programPath_ = {}; std::string programPath_ = {};
//! 应用程序目录 //! 应用程序路径
std::string exePath_ = {}; std::string exePath_ = {};
}; };
......
...@@ -277,6 +277,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperated ...@@ -277,6 +277,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperated
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperatedWithoutBin", "testPathHelperDataSeperatedWithoutBin\testPathHelperDataSeperatedWithoutBin.vcxproj", "{D11505A8-228C-4450-9674-08D993962615}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperatedWithoutBin", "testPathHelperDataSeperatedWithoutBin\testPathHelperDataSeperatedWithoutBin.vcxproj", "{D11505A8-228C-4450-9674-08D993962615}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "qt_tests", "qt_tests", "{5AFB3C82-FDEA-458C-9B56-E28A3F96F113}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperLocal", "testPathHelperLocal\testPathHelperLocal.vcxproj", "{726DE046-6AF9-4138-B3C9-23B77822433A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperLocalWithoutBin", "testPathHelperLocalWithoutBin\testPathHelperLocalWithoutBin.vcxproj", "{72D8135A-48CF-464E-9B55-8991D2BA35EB}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperatedQt", "testPathHelperDataSeperatedQt\testPathHelperDataSeperatedQt.vcxproj", "{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperatedWithoutBinQt", "testPathHelperDataSeperatedWithoutBinQt\testPathHelperDataSeperatedWithoutBinQt.vcxproj", "{ECF057F3-AB01-4129-8C5C-E59DD4261770}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64 Debug|x64 = Debug|x64
...@@ -535,6 +545,30 @@ Global ...@@ -535,6 +545,30 @@ Global
{D11505A8-228C-4450-9674-08D993962615}.Release|x64.Build.0 = Release|x64 {D11505A8-228C-4450-9674-08D993962615}.Release|x64.Build.0 = Release|x64
{D11505A8-228C-4450-9674-08D993962615}.Release|x86.ActiveCfg = Release|Win32 {D11505A8-228C-4450-9674-08D993962615}.Release|x86.ActiveCfg = Release|Win32
{D11505A8-228C-4450-9674-08D993962615}.Release|x86.Build.0 = Release|Win32 {D11505A8-228C-4450-9674-08D993962615}.Release|x86.Build.0 = Release|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Debug|x64.ActiveCfg = Debug|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Debug|x86.ActiveCfg = Debug|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Debug|x86.Build.0 = Debug|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Release|x64.ActiveCfg = Release|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Release|x86.ActiveCfg = Release|Win32
{726DE046-6AF9-4138-B3C9-23B77822433A}.Release|x86.Build.0 = Release|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Debug|x64.ActiveCfg = Debug|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Debug|x86.ActiveCfg = Debug|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Debug|x86.Build.0 = Debug|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Release|x64.ActiveCfg = Release|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Release|x86.ActiveCfg = Release|Win32
{72D8135A-48CF-464E-9B55-8991D2BA35EB}.Release|x86.Build.0 = Release|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Debug|x64.ActiveCfg = Debug|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Debug|x86.ActiveCfg = Debug|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Debug|x86.Build.0 = Debug|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Release|x64.ActiveCfg = Release|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Release|x86.ActiveCfg = Release|Win32
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}.Release|x86.Build.0 = Release|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Debug|x64.ActiveCfg = Debug|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Debug|x86.ActiveCfg = Debug|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Debug|x86.Build.0 = Debug|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Release|x64.ActiveCfg = Release|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Release|x86.ActiveCfg = Release|Win32
{ECF057F3-AB01-4129-8C5C-E59DD4261770}.Release|x86.Build.0 = Release|Win32
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
...@@ -594,6 +628,11 @@ Global ...@@ -594,6 +628,11 @@ Global
{2DABB64E-7965-40BA-A81A-8AFACF648AC8} = {0E6598D3-602D-4552-97F7-DC5AB458D553} {2DABB64E-7965-40BA-A81A-8AFACF648AC8} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
{33173172-E8FB-403B-8D49-28F4E026C3BB} = {0E6598D3-602D-4552-97F7-DC5AB458D553} {33173172-E8FB-403B-8D49-28F4E026C3BB} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
{D11505A8-228C-4450-9674-08D993962615} = {0E6598D3-602D-4552-97F7-DC5AB458D553} {D11505A8-228C-4450-9674-08D993962615} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
{5AFB3C82-FDEA-458C-9B56-E28A3F96F113} = {21DC893D-AB0B-48E1-9E23-069A025218D9}
{726DE046-6AF9-4138-B3C9-23B77822433A} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
{72D8135A-48CF-464E-9B55-8991D2BA35EB} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
{ECF057F3-AB01-4129-8C5C-E59DD4261770} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D} SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
......
#include <QtCore/QCoreApplication>
#include "../../jlib/qt/QtPathHelper.h"
#include "../../jlib/qt/QtDebug.h"
using namespace jlib::qt;
int main(int argc, char* argv[])
{
QCoreApplication a(argc, argv);
{
MYQDEBUG << "useTmpAsLogFolder=false";
PathHelperDataSeperated helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
{
MYQDEBUG << "\nuseTmpAsLogFolder=true";
PathHelperDataSeperated helper(true);
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
{
QCoreApplication::setOrganizationName("my-organization");
MYQDEBUG << "\nwith my-organization, useTmpAsLogFolder=false";
PathHelperDataSeperated helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.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>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8}</ProjectGuid>
<Keyword>QtVS_v301</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">
<QtMsBuild>$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\bin\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</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|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>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</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="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</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
#include <QtCore/QCoreApplication>
#include "../../jlib/qt/QtPathHelper.h"
#include "../../jlib/qt/QtDebug.h"
using namespace jlib::qt;
int main(int argc, char* argv[])
{
QCoreApplication a(argc, argv);
{
MYQDEBUG << "useTmpAsLogFolder=false";
PathHelperDataSeperatedWithoutBin helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
{
MYQDEBUG << "\nuseTmpAsLogFolder=true";
PathHelperDataSeperatedWithoutBin helper(true);
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
{
QCoreApplication::setOrganizationName("my-organization");
MYQDEBUG << "\nwith my-organization, useTmpAsLogFolder=false";
PathHelperDataSeperatedWithoutBin helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
}
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.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>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{ECF057F3-AB01-4129-8C5C-E59DD4261770}</ProjectGuid>
<Keyword>QtVS_v301</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">
<QtMsBuild>$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</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|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>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</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="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</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
#include <QtCore/QCoreApplication>
#include "../../jlib/qt/QtPathHelper.h"
#include "../../jlib/qt/QtDebug.h"
using namespace jlib::qt;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
PathHelperLocal helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.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>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{726DE046-6AF9-4138-B3C9-23B77822433A}</ProjectGuid>
<Keyword>QtVS_v301</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">
<QtMsBuild>$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\bin\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</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|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>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</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="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</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
#include <QtCore/QCoreApplication>
#include "../../jlib/qt/QtPathHelper.h"
#include "../../jlib/qt/QtDebug.h"
using namespace jlib::qt;
int main(int argc, char* argv[])
{
QCoreApplication a(argc, argv);
PathHelperLocalWithoutBin helper;
MYQDEBUG << ("exe =") << helper.exe();
MYQDEBUG << ("program =") << helper.program();
MYQDEBUG << ("bin =") << helper.bin();
MYQDEBUG << ("data =") << helper.data();
MYQDEBUG << ("config =") << helper.config();
MYQDEBUG << ("db =") << helper.db();
MYQDEBUG << ("log =") << helper.log();
MYQDEBUG << ("dumps =") << helper.dumps();
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.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>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{72D8135A-48CF-464E-9B55-8991D2BA35EB}</ProjectGuid>
<Keyword>QtVS_v301</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">
<QtMsBuild>$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
</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|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>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</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="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</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
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