From 580f285edd1e8dcd925aa204a5547236ea272e72 Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Fri, 6 Mar 2026 08:22:02 -0700 Subject: [PATCH] fix: also copy theme JSON files to output dir for MSVC builds --- msvc/Reclass.vcxproj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/msvc/Reclass.vcxproj b/msvc/Reclass.vcxproj index a8eccbf..50cf5c7 100644 --- a/msvc/Reclass.vcxproj +++ b/msvc/Reclass.vcxproj @@ -73,7 +73,8 @@ $(QtToolsPath)/windeployqt $(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName).exe -xcopy /Y /I /E "$(SolutionDir)..\src\examples\*.rcx" "$(SolutionDir)$(Platform)\$(Configuration)\examples\" +xcopy /Y /I "$(SolutionDir)..\src\examples\*.rcx" "$(SolutionDir)$(Platform)\$(Configuration)\examples\" +xcopy /Y /I "$(SolutionDir)..\src\themes\defaults\*.json" "$(SolutionDir)$(Platform)\$(Configuration)\themes\" @@ -86,7 +87,8 @@ xcopy /Y /I /E "$(SolutionDir)..\src\examples\*.rcx" "$(SolutionDir)$(Platform)\ $(QtToolsPath)/windeployqt $(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName).exe -xcopy /Y /I /E "$(SolutionDir)..\src\examples\*.rcx" "$(SolutionDir)$(Platform)\$(Configuration)\examples\" +xcopy /Y /I "$(SolutionDir)..\src\examples\*.rcx" "$(SolutionDir)$(Platform)\$(Configuration)\examples\" +xcopy /Y /I "$(SolutionDir)..\src\themes\defaults\*.json" "$(SolutionDir)$(Platform)\$(Configuration)\themes\"