Qt 的路径说明斜杠pro的pwd
1. ../
-
../ //表示上一级路径
-
../../ //表示上上级路径,以此类推
2. ./:点斜杠代表当前所在的目录。
./ //表示当前所在的目录
3. /
/ //表示根目录
4. $$PWD
$$PWD //项目的顶级目录,
Qt pro添加dll文件方法
LIBS += -L[path_to_dll_folder] -l[dll_file_name_without_extension],lib文件不写dll后缀
LIBS += \
# -L$$PWD/debug -lzlib \
# -L$$OUT_PWD/./debug/ -llibpng \
# -L$$OUT_PWD/./debug/ -lzint \
-L$$PWD/debug -lzlib \
-L$$PWD/debug/ -llibpng \
-L$$PWD/debug/ -lzint \
欢迎讨论,相互学习。
cdtxw@foxmail.com