[solved] qmake scope based on (32 vs 64) architecture
-
i cannot seem to find in the documentation how to use a scope based on the architecture.
i'm currently using
@
CONFIG += x86 x86_64
macx:INCLUDEPATH += ../../../oci/mac_i386/include
@
and would need to use different include directories depending on the 32bit or 64bit architecture.
is there a way to do this? -
"How can I detect in the .pro file if I am compiling for a 32 bit or a 64 bit platform?":http://developer.qt.nokia.com/faq/answer/how_can_i_detect_in_the_.pro_file_if_i_am_compiling_for_a_32_bit_or_a_64_bi
"Building projects for 32 and 64 bit Windows on 64 bit machine":http://developer.qt.nokia.com/forums/viewthread/5601
-
[quote author="Lukas Geyer" date="1309845035"]"How can I detect in the .pro file if I am compiling for a 32 bit or a 64 bit platform?":http://developer.qt.nokia.com/faq/answer/how_can_i_detect_in_the_.pro_file_if_i_am_compiling_for_a_32_bit_or_a_64_bi
"Building projects for 32 and 64 bit Windows on 64 bit machine":http://developer.qt.nokia.com/forums/viewthread/5601[/quote]
Thank you!