Distribute QT RCC
-
wrote on 6 Nov 2018, 16:11 last edited by MTirelli 11 Jun 2018, 16:12
Hi,
is possible to distribute with my software the RCC compiler and some DLL (libgcc_s_dw2-1.dll, libstdc++-6.dll, libwinpthread-1.dll)?Thanks
-
Hi,
is possible to distribute with my software the RCC compiler and some DLL (libgcc_s_dw2-1.dll, libstdc++-6.dll, libwinpthread-1.dll)?Thanks
wrote on 6 Nov 2018, 18:22 last edited by@MTirelli regarding the DLLs I'd say sometimes it's required! given that the user receiving your app doesn't have them installed, and since all those particular libraries are run-time support libraries.
Regarding the RCC compiler, why do you want to distribute it?
Please remember that:The rcc tool is used to embed resources into a Qt application during the build process. It works by generating a C++ source file containing data specified in a Qt resource (.qrc) file.
so the results from RCC compilation ends up into the executable file of your Qt application
-
@Pablo-J-Rogina You can create external binary resources with
rcc
. But it's indeed a surprising requirement. -
@Pablo-J-Rogina You can create external binary resources with
rcc
. But it's indeed a surprising requirement.wrote on 6 Nov 2018, 20:29 last edited by@SGaist said in Distribute QT RCC:
create external binary resources
I didn't know about it, thank you for pointing it out.
-
@MTirelli regarding the DLLs I'd say sometimes it's required! given that the user receiving your app doesn't have them installed, and since all those particular libraries are run-time support libraries.
Regarding the RCC compiler, why do you want to distribute it?
Please remember that:The rcc tool is used to embed resources into a Qt application during the build process. It works by generating a C++ source file containing data specified in a Qt resource (.qrc) file.
so the results from RCC compilation ends up into the executable file of your Qt application
wrote on 7 Nov 2018, 09:43 last edited by MTirelli 11 Jul 2018, 09:43@Pablo-J-Rogina
Regarding the RCC compiler, why do you want to distribute it?
My Java application create some basically .qrc files that will be used into QT application, so i must convert this files into a .rcc using the RCC
Thanks for the reply
-
@Pablo-J-Rogina
Regarding the RCC compiler, why do you want to distribute it?
My Java application create some basically .qrc files that will be used into QT application, so i must convert this files into a .rcc using the RCC
Thanks for the reply
wrote on 7 Nov 2018, 13:00 last edited byi must convert this files into a .rcc using the RCC
could that step be done at compile time? So to avoid distributing the RCC compiler?
-
i must convert this files into a .rcc using the RCC
could that step be done at compile time? So to avoid distributing the RCC compiler?
wrote on 8 Nov 2018, 09:47 last edited byNo, is not possible
4/7