tonghao.yuan

Results 18 comments of tonghao.yuan

what steps have you taken to `run the text file`? and which version of visual studio are you using, recent version has better **CMake** support. Generally speaking, you should select...

The flag I want to add is [/Zc:__cplusplus](https://docs.microsoft.com/en-us/cpp/build/reference/zc-cplusplus?view=msvc-170) on MSVC

CUrrently I use `self._cmake.definitions["CMAKE_CXX_FLAGS"] = "/EHsc /Zc:__cplusplus"` but I don't know if this is a good idea.

Thank you @czoido I'm creating a package with conan. I'm concering if `self._cmake.definitions["CMAKE_CXX_FLAGS"] = "/EHsc /Zc:__cplusplus"` overrides the flags set before

@Tinuviela A workaround is just comment these two lines

Did't compile with vtk9.0.0. I just compiled it with vtk from [master](https://gitlab.kitware.com/vtk/vtk), after fixing some small issues there is one left I don't know how to do at quickVtkFboOffscreenWindow.cpp: ```cpp...

According to this issue on [gitlab vtk](https://gitlab.kitware.com/vtk/vtk/-/issues/16061#note_788163) it seems still possible to to this.But I don't know how.

Yes, I mean the c++ code style.According to [doc](https://clang.llvm.org/extra/clang-tidy/Integrations.html), it seems XCode does't have a integration with clang-tidy. Clang-tidy can be [integrated with cmake](https://gitlab.kitware.com/cmake/cmake/issues/18926), you might want to have a...

Yes, I mean [QML Plugins](https://doc.qt.io/qt-5/qtqml-modules-cppplugins.html).If **QuickVtk Core** is made to a [QML Plugins](https://doc.qt.io/qt-5/qtqml-modules-cppplugins.html), it will act like a native QML type just like [Rectangle QML Type](https://doc.qt.io/qt-5/qml-qtquick-rectangle.html).Everyone who wants to use...