macdew

Results 15 comments of macdew

I'm afraid the suggested fix doesn't appear to work for me with MSVC 2019 in combination with /std:c++17 (which we require for filesystem access)

I had the same problem... never did find the localstorage file, but I noticed that switching to another console and back to the greeter would "unlock" for a brief moment...

I'm facing this same issue too. I take it there has been no further progress on this? In my opinion, for a multi-configuration CMake generator (in my case VS) the...

We've spotted the same issue in this cmake script, replaced it with: ``` foreach(CMAKE_BUILD_TYPE ${CMAKE_CONFIGURATION_TYPES}) message("Running Conan for build type=${CMAKE_BUILD_TYPE}") set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE}) conan_cmake_settings(settings ${ARGV}) conan_cmake_install(SETTINGS ${settings} ${ARGV}) endforeach() ``` This...

I just noticed this same issue on Windows. My C++ plugins work fine with clang-format, but for a protobuf file, I get the exact same error message as in this...

This may have been fixed with Cotire 1.8.0 - at least I'm not getting this particular problem anymore (I was with 1.7.10). However, I have filed a separate issue #166...

I was wrong about thinking it was fixed with Cotire 1.8.0. I'm also still seeing this problem. Oddly enough, some includes are ok, but there's still the root file in...

Ok, it looks like this may be a CMake 3.12 regression... All the machines that are failing are running CMake 3.12, but the ones that still appear to work are...

We've reproduced using a small stand-alone test project and confirmed that qt5_wrap_cpp + Cotire break on CMake 3.12 but work on 3.11. Moc files do not created sufficiently early (or...

Apologies for the long delay. We have reported the issue to Kitware as a CMake 3.12 regression - they have investigated and recommended changes to Cotire. The CMake changes in...