The IntermediateDirectory and OutDir are always defined before WorkspacePath and ProjectPathIntermediateDirectory := ../out/debug
OutDir := $(IntermediateDirectory)
WorkspacePath := "E:\test_suit\config_test"
ProjectPath := "E:\test_suit\config_test"
But I want to set the IntermediateDirectory and OutDir relative to the WorkspacePath or ProjectPath,such as:
How can I do that ?IntermediateDirectory:=$(WorkspacePath)/out/debug
OutDir:=$(WorkspacePath)/bin
BTW: Can I specify an included file for the auto generated makefile ?
Thanks