Andris Active Member Licensed User Longtime User Feb 17, 2020 #1 I have a number of different build configurations for a B4i project. Each has a different icon set. Is there any way to automatically save icon sets into different folders? I'm sure the answer is no but thought I'd ask anyway.
I have a number of different build configurations for a B4i project. Each has a different icon set. Is there any way to automatically save icon sets into different folders? I'm sure the answer is no but thought I'd ask anyway.
D Deleted member 103 Guest Feb 17, 2020 #2 Hi @Andris , here is an example: B4X: #Region Conditional Compilation #If Lite #ApplicationLabel: MyApp-Lite AppName = "MyApp-Lite" #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Lite\*.* ..\Files\Special\*.* #End If #If Pro #ApplicationLabel: MyApp-Pro AppName = "MyApp-Pro" #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Pro\*.* ..\Files\Special\*.* #End If #End Region Upvote 0
Hi @Andris , here is an example: B4X: #Region Conditional Compilation #If Lite #ApplicationLabel: MyApp-Lite AppName = "MyApp-Lite" #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Lite\*.* ..\Files\Special\*.* #End If #If Pro #ApplicationLabel: MyApp-Pro AppName = "MyApp-Pro" #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Pro\*.* ..\Files\Special\*.* #End If #End Region
Andris Active Member Licensed User Longtime User Feb 17, 2020 #3 Thanks so much! But of course! Upvote 0