You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be either a new target type "config", which will mean only to transit configuration (at the time of writing it, still a pending feature). The goal of this definition is to integrate settings that will be applied to the dependent target. Example
ag settings -type config -defines TEST=2 -ldflags {+ -lm}
ag goal -type program -sources runner.cc global.cc -depends settings
Should result in the following commands in Makefile.tcl:
IMPORTANT! The config-type object need not be the same as virtual library because virtual library (see #79) may have its own distinct settings; making a target dependent on a virtual library makes only sources to be added to the source list of the given target, but not to spread the settings (sources that belong to the virtual library may use their distinct settings; the "config" type target can help here keep common settings for a virtual library and the dependent target).
The text was updated successfully, but these errors were encountered:
This can be either a new target type "config", which will mean only to transit configuration (at the time of writing it, still a pending feature). The goal of this definition is to integrate settings that will be applied to the dependent target. Example
Should result in the following commands in Makefile.tcl:
...
IMPORTANT! The config-type object need not be the same as virtual library because virtual library (see #79) may have its own distinct settings; making a target dependent on a virtual library makes only sources to be added to the source list of the given target, but not to spread the settings (sources that belong to the virtual library may use their distinct settings; the "config" type target can help here keep common settings for a virtual library and the dependent target).
The text was updated successfully, but these errors were encountered: