|
1.suport vsproject mfc mode
target(xxx)
-- for make vsproject on mfcmode
set_values("mfc",true)
-- for unicode mode
add_defines("UNICODE")
-- use MT or MD switch RuntimeLibrary, (debug use MTd,MDd)
add_cxflags("-MT")
2.subsystem switch support
target(xxx)
-- change subsystem to windows, default console
add_ldflags("/SUBSYSTEM:WINDOWS",{force=true})
|