This issue behaves similar to resolved #137 , but seems harder to solve, since in my case e.g. (linux) Threads::Threads is not even a physical library.
A work around is to include a call to find_package to look for Threads:
find_package(Threads REQUIRED)
find_package(limesuiteng REQUIRED)
...
targekt_link_libraries(myapp
limesuiteng::limesuiteng
)
This seems to work in my case (since it appears to be a no op). I suspect it might get problematic on other platforms.
This issue behaves similar to resolved #137 , but seems harder to solve, since in my case e.g. (linux) Threads::Threads is not even a physical library.
A work around is to include a call to find_package to look for Threads:
This seems to work in my case (since it appears to be a no op). I suspect it might get problematic on other platforms.