Changes required in .pro file to copy some specific files/folder into final package during deployment
Unsolved
General and Desktop
-
what changes i need to make in .pro file for copying some platform specific files /folder which will be different for linux and windows (example : for windows in need to copy win32_folder into final deployed_win32_package , and linux_folder into final deployed _linux_package ).
i guess i need to make changes like below for windows
win32 {
file.path=file_path
file.name=file_name
deployment +=file
}
please suggest any way i can achieve this !! -