Posts by fegomes • 11 points
3 posts
-
0
votes1
answer55
viewsA: Multiple Cmake in one project
Pedro Soares, You need to use the add_subdirectory(xpto) in its main Cmakelists.txt. Follow my blog post teaching how to modularize C libraries++.…
-
1
votes1
answer467
viewsA: Are there alternatives for reflection/introspection in C++?
You can use Boost Hana? https://github.com/boostorg/hana You will not have Reflection, but will work with Meta True Programming. #include <boost/hana.hpp> #include <cassert> #include…
-
0
votes2
answers85
viewsA: Format Date in javascript for "from here to Xd Yh zm"
Make a . html file with this code Your code is working normally. <html> <body> <script> dt = 86400; //1d 0h 0s o valor está em segundos todos_min = Math.round(dt/60); min_restantes…