-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented copying properties from selected object in case of adding…
… new custom object.
- Loading branch information
1 parent
dcea966
commit 2c28cc1
Showing
4 changed files
with
90 additions
and
73 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,40 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
<LocalDebuggerWorkingDirectory>../../../bin/ifaceed/</LocalDebuggerWorkingDirectory> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommandArguments>-resources globalconfig.json -width 800 -height 600</LocalDebuggerCommandArguments> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugQt4|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
<LocalDebuggerWorkingDirectory>../../../bin/ifaceed/</LocalDebuggerWorkingDirectory> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerCommandArguments>-resources globalconfig.json -width 800 -height 600</LocalDebuggerCommandArguments> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='GUITests|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
<LocalDebuggerCommandArguments>-resources globalconfig.json -width 800 -height 600</LocalDebuggerCommandArguments> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>../../../bin/ifaceed/</LocalDebuggerWorkingDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='UnitTests|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseQt4|Win32'"> | ||
<QTDIR>D:\SDKs\Qt-4.8.6-msvc2010</QTDIR> | ||
<QTDIR>E:\SDKs\Qt5.4.1-MSVC-2010\5.4\msvc2010_opengl</QTDIR> | ||
<LocalDebuggerEnvironment>PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH)</LocalDebuggerEnvironment> | ||
</PropertyGroup> | ||
</Project> |