Currently, libraries must be manually selected in the Libraries Manager tab of the IDE
A module options like #Library could be useful for these use cases:
1) after downloading a project, you must actually guess which libraries are required to compile it: it's a guesswork until all errors vanish from the Logs
2) selecting libraries based on build configuration with #if statements, where different versions of the same source are used to build different apps with different capabilities
example:
A module options like #Library could be useful for these use cases:
1) after downloading a project, you must actually guess which libraries are required to compile it: it's a guesswork until all errors vanish from the Logs
2) selecting libraries based on build configuration with #if statements, where different versions of the same source are used to build different apps with different capabilities
example:
B4X:
#if Lite
#Library "iMedia"
#End If
#Library "XUI Views"