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
What seems to be the problem?
xcode4 doesn't fully support (new feature added by #2028) includedirsafter. (i.e it adds them as symtem/external includes)
What did you expect to happen?
pass to gcc/clang the -idirafter flags to the directories
What version of Premake are you using?
master branch
Anything else we should know?
Instead of adding includedirsafter in system/external include dirs fields,
adding toolset.getincludedirs(cfg, {}, {}, cfg.frameworkdirs, cfg.includedirsafter) as build option should do the job.
The text was updated successfully, but these errors were encountered:
What seems to be the problem?
xcode4 doesn't fully support (new feature added by #2028)
includedirsafter
. (i.e it adds them as symtem/external includes)What did you expect to happen?
pass to gcc/clang the
-idirafter
flags to the directoriesHow can we reproduce this?
With testing project project-includedirsafter.
What version of Premake are you using?
master branch
Anything else we should know?
Instead of adding
includedirsafter
in system/external include dirs fields,adding
toolset.getincludedirs(cfg, {}, {}, cfg.frameworkdirs, cfg.includedirsafter)
as build option should do the job.The text was updated successfully, but these errors were encountered: