mono command line tools generally support the --pkg:<package name> option that allows a bunch of references (a package) to be automatically included.
add such a support to booc.
the basic idea is:
def getPackageReferences(packageName as string):
return shell("pkg-config", "--libs ${packageName}")
Description
mono command line tools generally support the --pkg:<package name> option that allows a bunch of references (a package) to be automatically included.
add such a support to booc.
the basic idea is:
def getPackageReferences(packageName as string):
return shell("pkg-config", "--libs ${packageName}")
Currently App.cs does a switch on the first character of the argument and -pkg is close to -p* (something that handles pipes). If you could put up a list of all the command line options as they stand now (I can't find one) I'll put it into a help switch and add -pkg as needed.
Matthew Metnetsky - 21/Jul/04 09:34 AM Currently App.cs does a switch on the first character of the argument and -pkg is close to -p* (something that handles pipes). If you could put up a list of all the command line options as they stand now (I can't find one) I'll put it into a help switch and add -pkg as needed.
~ Matthew
~ Matthew