PDA

View Full Version : qtcreator specific x64 define



Le_B
26th June 2012, 15:59
hello all,

i have a project i want to compile in x86 and x64 with qtcreator
i want to specify a DLLDESTDIR for each configuration.
i have already :
win32:CONFIG(debug, debug|release):DLLDESTDIR = <my_path>
is there a win64: or something that can help me ?

thanks

Le_B
26th June 2012, 18:06
i found a way :

contains(DEFINES, WIN64){
//x64 propertoes
}

!contains(DEFINES, WIN64){
//x86 properties
}

maybe there s a better way though...