Hi:
In the makefile, we frequently use macro to add or change the Compiler setting
for example
!IF "$(USING_SOMETHING)" == "1"
CDEFINES=$(CDEFINES) -D_SOMETHINGDEFINED
INCLUDEPATH=SOMETHING_PATH;$(INCLUDEPATH)
!ENDIF
How can I port this logic into Visual Studio 2010 project setting???
Thanks
Lu