How to to target_compile_definitions() in qmake?

56 views Asked by At

In CMake I use:

#target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE UNICODE _UNICODE SAPwithTHREADS)
target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE)
target_compile_definitions(appsap_rtf PRIVATE UNICODE)
target_compile_definitions(appsap_rtf PRIVATE _UNICODE)
target_compile_definitions(appsap_rtf PRIVATE SAPwithTHREADS)

but how do I define these definitions in qmake?

0

There are 0 answers