From 8901a0872a52d36ed150874eec157d56454bc0e9 Mon Sep 17 00:00:00 2001 From: Seth Hamilton Date: Mon, 25 Aug 2025 04:31:00 -0500 Subject: [PATCH] refer to all directories from the project dir and not the solution dir (for instances where the solution dir is outside the project dir --- LivePlotter.vcxproj | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/LivePlotter.vcxproj b/LivePlotter.vcxproj index e784240..6e2734c 100644 --- a/LivePlotter.vcxproj +++ b/LivePlotter.vcxproj @@ -97,18 +97,18 @@ - $(SolutionDir)lib;$(SolutionDir)ext\glfw\build\src\Debug;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64) - $(SolutionDir)ext\glm;$(SolutionDir)ext\glfw\include;$(SolutionDir)inc;$(IncludePath) - $(SolutionDir)bin\$(Platform)\$(Configuration)\ - $(SolutionDir)obj\$(Platform)\$(Configuration)\ - $(SolutionDir)src;$(SourcePath) + $(ProjectDir)lib;$(ProjectDir)ext\glfw\build\src\Debug;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64) + $(ProjectDir)ext\glm;$(ProjectDir)ext\glfw\include;$(ProjectDir)inc;$(IncludePath) + $(ProjectDir)bin\$(Platform)\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + $(ProjectDir)src;$(SourcePath) - $(SolutionDir)lib;$(SolutionDir)ext\glfw\build\src\Debug;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64) - $(SolutionDir)ext\glm;$(SolutionDir)ext\glfw\include;$(SolutionDir)inc;$(IncludePath) - $(SolutionDir)bin\$(Platform)\$(Configuration)\ - $(SolutionDir)obj\$(Platform)\$(Configuration)\ - $(SolutionDir)src;$(SourcePath) + $(ProjectDir)lib;$(ProjectDir)ext\glfw\build\src\Debug;$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64) + $(ProjectDir)ext\glm;$(ProjectDir)ext\glfw\include;$(ProjectDir)inc;$(IncludePath) + $(ProjectDir)bin\$(Platform)\$(Configuration)\ + $(ProjectDir)obj\$(Platform)\$(Configuration)\ + $(ProjectDir)src;$(SourcePath) @@ -164,7 +164,7 @@ glfw3.lib;opengl32.lib;%(AdditionalDependencies) - xcopy /y "$(SolutionDir)poses.csv" "$(OutDir)" + xcopy /y "$(ProjectDir)poses.csv" "$(OutDir)" @@ -181,7 +181,7 @@ glfw3.lib;opengl32.lib;%(AdditionalDependencies) - xcopy /y "$(SolutionDir)poses.csv" "$(OutDir)" + xcopy /y "$(ProjectDir)poses.csv" "$(OutDir)"