-
Notifications
You must be signed in to change notification settings - Fork 1
global
rubenvb edited this page Aug 20, 2012
·
2 revisions
global
is the name of the unique target that allows to define options and file/directory lists that are to be shared across all targets in that project file. It prevents code repetition in the project files.
global
{
# all other targets will include these directories in their search path
SOURCE_DIRS src
HEADER_DIRS include
}
- All targets in
sub
sections will inherit everything of the upperglobal
targets. Be careful adding source files to this target.