In qt project, how to add include path to pro under windows where path contains space

I want to add this C: \ Program Files \ MySQL \ MySQL Server 5.5 \ include to my .pro file. How can I achieve this? thanks:)

+6
source share
1 answer

Write it between double quotes.

win32 { INCLUDEPATH += "C:\Program Files\MySQL\MySQL Server 5.5\include" ... } 
+12
source

Source: https://habr.com/ru/post/916436/


All Articles