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

后端 未结 1 1593
甜味超标
甜味超标 2020-12-07 02:15

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

相关标签:
1条回答
  • 2020-12-07 02:51

    Write it between double quotes..

    win32 {
    
        INCLUDEPATH += "C:\Program Files\MySQL\MySQL Server 5.5\include"
        ...
    }
    
    0 讨论(0)
提交回复
热议问题