Forced lib linkage for its resources
Solved
General and Desktop
-
I have a shared lib which binary stores some compiled-in resources in order to share it with apps. The problem is if my app doesn't import any library symbols library would not be actually linked, and in that case its resources are not available (even if I use
target_link_libraries
in my project). I can import a dummy symbol, but I don't think it is a perfect solution, Are there any built-in qt one? -
@0-5 said in Forced lib linkage for its resources:
I can import a dummy symbol
correct
Are there any built-in qt one?
No, not a Qt issue
-
@Christian-Ehrlicher many thanks for fast response