#inclib

Preprocessor directive

Syntax
	#inclib "libname"

Description
	Includes a library in the linking process as if the user specified 
	CompilerOptl-l libname on the command line.

Example
	'' incomplete code snippet

	'' this will include libmystuff.a in the link process
	#inclib "mystuff" 

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgInclude#include
	* CompilerOptlCompiler Option: -l
	* CompilerOptpCompiler Option: -p
	* ProPgStaticLibrariesStatic Libraries
	* ProPgSharedLibrariesShared Libraries

