Warmy

Results 6 comments of Warmy

I don't quite get what exactly should not work by the explanation but I changed nearly nothing (https://github.com/commontk/CTK/compare/master...Warmyone:relocatable_install), cmake installed ctk, am fetching it from a repo now and have...

Im not sure if it is helpful for the issue but CMake does have [generator-expressions](https://cmake.org/cmake/help/latest/manual/cmake-generator-expressions.7.html#output-related-expressions). `$` and `$` could be useful. Instead of ``` target_link_libraries(${TOOLKIT} optimized ${lib}) ``` , which...

On another project I ran into this bug again, so here is my attempt to fix it (https://github.com/tpaviot/oce/compare/OCE-0.18.3...Warmyone:OCE-0.18.3_relative-cmake-install-paths). I don't know the proper way to contribute, so should I just...

If I am not mistaking `pthread` is Linux only. For the msvc on windows you need `pthreadVC2`. What seems to work is to download it from the sources https://github.com/artoolkitx/artoolkitx/raw/master/Source/depends/windows/lib/x64/pthreadVC2static.lib and...

Im not sure if it is helpful for the issue but CMake does have [generator-expressions](https://cmake.org/cmake/help/latest/manual/cmake-generator-expressions.7.html#output-related-expressions). `$` and `$` could be useful. Instead of ``` target_link_libraries(ARX PUBLIC ${PTHREAD_LIBRARIES} ... ) ```...

I was struggling to understand how the generators work and ended up reading through the code of most of them. I advanced the wiki page quite a bit. Maybe someone...