Is it possible to add flags like the below to a Package.swift file?
#if DEBUG
...Code
#else
In particular, I'm trying to load one package for DEBUG and one packaged for RELEASE by placing each package inside the conditional compile block respective to their use case (which is just the nomenclature I'm using for CLIENT and SERVER given that I cannot figure how to create custom flags beyond DEBUG and RELEASE). The client uses SQLite and the server uses PostgreSQL. I've written a test library that maps to one file that is conditionally compiled to use the appropriate SQL, so really the only problem now is getting the Package.swift to conditionally compile too.