Ariel Vina-Rodriguez
Ariel Vina-Rodriguez
@tim37021 Could you post an small but complete program to do that integration with vulcan? It is something that people ask frecuently.
https://github.com/qPCR4vir/nana-docs/wiki/Widgets
This will be here: http://qpcr4vir.github.io/nana-doxy/html/de/d2b/md__c_1__prog__ext_lib_nana-docs_source_03-_widgets.html todo: add http://nanapro.org/en-us/documentation/widgets/images/group_widgets.png
Hi, @GermanAizek thank you for your effort. But I'm sorry to say: before you open a PR, please compile AND run the tests. See here: https://travis-ci.org/github/cnjinhao/nana Please, compare with this:...
We have fixed a number of bugs and a release is spectated: use - https://github.com/cnjinhao/nana/tree/develop and make sure your sln/project have std:c++17 or latest set.
what compiler are you using? use a cumpliant modern c++ compiler and you will have std::filesystem and you will need no workaround.
> If the project is compiled with std filesystem, is_directory() gets std::error_code and std::filesystem::path but when the project is compiled with Boost filesystem, the functions gets std::error_code and boost::filesystem::path which...
Yes, boost::filesystem is just a workaround for your compiler not providing std::filesystem. Unfortunatelly boost dont full implement the last std::filesystem. One need workarounds to make the workaround work. One can...
What distro of gcc is that? Until now I have no gcc running filesystem in windows (only MSys64-MinGW-gcc8.3 which have other problems - how to solve the dll problem?). If...
Thanks! I used the lastest option from here: https://gcc-mcf.lhmouse.com/ It set: CMAKE_CXX_COMPILER_VERSION = 9.1.1 !!! I changed the build/cmake/compilers.cmake to add static c++ runtime linking but still need to copy...