Skip to content

Commit

Permalink
Updated include paths in QT project and VS solution
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliom committed Jul 23, 2024
1 parent 306c301 commit 22be3d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions BasicRenderer/BasicRenderer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -126,26 +126,26 @@
<ExcludePath>$(ExcludePath)</ExcludePath>
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)intermediate\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IncludePath>$(ProjectDir)header;$(IncludePath)</IncludePath>
<IncludePath>$(ProjectDir)include;$(IncludePath)</IncludePath>
<SourcePath>$(ProjectDir)source;$(SourcePath)</SourcePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LibDebug|x64'">
<ExcludePath>$(ExcludePath)</ExcludePath>
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)intermediate\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IncludePath>$(ProjectDir)header;$(IncludePath)</IncludePath>
<IncludePath>$(ProjectDir)include;$(IncludePath)</IncludePath>
<SourcePath>$(ProjectDir)source;$(SourcePath)</SourcePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)intermediate\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IncludePath>$(ProjectDir)header;$(IncludePath)</IncludePath>
<IncludePath>$(ProjectDir)include;$(IncludePath)</IncludePath>
<SourcePath>$(ProjectDir)source;$(SourcePath)</SourcePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)intermediate\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IncludePath>$(ProjectDir)header;$(IncludePath)</IncludePath>
<IncludePath>$(ProjectDir)include;$(IncludePath)</IncludePath>
<SourcePath>$(ProjectDir)source;$(SourcePath)</SourcePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Expand Down
2 changes: 1 addition & 1 deletion BasicRenderer/source/Raytracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace BasicRenderer
}

#if !LIB_DEBUG && !LIB_RELEASE
const std::scoped_lock<std::mutex> lock(m_progressMtx);
std::scoped_lock<std::mutex> lock(m_progressMtx);
m_progress = m_progress + rowPctg;
std::cout << "Progress: " << static_cast<uint>(std::roundf(m_progress)) << "% \r";
#endif
Expand Down
4 changes: 2 additions & 2 deletions QtGUI/QtGUI.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;$(SolutionDir)BasicRenderer\BasicRenderer\x64\Release;$(SolutionDir)BasicRenderer\header;.;$(QTDIR)\include;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtCore;release;$(QTDIR)\mkspecs;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;$(SolutionDir)BasicRenderer\BasicRenderer\x64\Release;$(SolutionDir)BasicRenderer\include;.;$(QTDIR)\include;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtCore;release;$(QTDIR)\mkspecs;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>-Zc:strictStrings -Zc:throwingNew -w34100 -w34189 -w44996 -w44456 -w44457 -w44458 %(AdditionalOptions)</AdditionalOptions>
<AssemblerListingLocation>release\</AssemblerListingLocation>
<BrowseInformation>false</BrowseInformation>
Expand Down Expand Up @@ -133,7 +133,7 @@
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;$(SolutionDir)BasicRenderer\x64\Debug;$(SolutionDir)BasicRenderer\header;.;$(QTDIR)\include;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtCore;debug;$(QTDIR)\mkspecs;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;$(SolutionDir)BasicRenderer\x64\Debug;$(SolutionDir)BasicRenderer\include;.;$(QTDIR)\include;$(QTDIR)\include\QtWidgets;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtANGLE;$(QTDIR)\include\QtCore;debug;$(QTDIR)\mkspecs;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>-Zc:strictStrings -Zc:throwingNew -w34100 -w34189 -w44996 -w44456 -w44457 -w44458 %(AdditionalOptions)</AdditionalOptions>
<AssemblerListingLocation>debug\</AssemblerListingLocation>
<BrowseInformation>false</BrowseInformation>
Expand Down

0 comments on commit 22be3d1

Please sign in to comment.