Paul T

Results 139 comments of Paul T

Do `glm` and `glew` provide CMake targets? It seems that the CMake support for `Glew` is community based and is not in the root directory. I think you would need...

Interesting, thanks for reporting this. Are you not using CMake or the CMake target? I'm curious as to how thread-pool is being included.

Hmm, this should work since you are linking to `dp::thread-pool`. This should automatically pull in the include directory without the need to add it specifically to visual studio. I'll have...

If you're open to sticking with `CMake` as the primary build system, this could easily be done with the `FetchContent` module or with something like [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake). This would allow you...

Thanks for the report. Can you post what your task looks like that you're running on the thread pool?

Few things: - Why are keeping a pointer to the thread pool? - When the thread pool goes out of scope the deconstructor is automatically called. There's not need to...

Okay no problem, I see. One possible issue is that you're using `enqueue()` but you're not using the returned future. Consider using `enqueue_detach()`.

Any updates on this issue? Are you still facing problems?

This happens in `Release` as well.

After further investigation it seems that a different approach to the function timeout may be needed to avoid timer errors. It seems the error might be related to the timeout...