iOS Question iOS icon sets - is it possible to conditionally compile into different folders?

Andris

Active Member
Licensed User
Longtime User
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
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
Top