1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/QQtBasedLibTest/lib_header.pri
2018-05-24 20:03:03 +08:00

27 lines
852 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#---------------------------------------------------------------
#lib_header.pri
#你可以通过这个文件告诉lib用户这个文件不要修改
#---------------------------------------------------------------
#################################################################
##definition and configration
##need QSYS
#################################################################
##################################################################
##include directories
##################################################################
defineReplace(lib_header){
path = $$1
!isEmpty(2) : error("lib_header(path) requires one arguments.")
isEmpty(1) : error("lib_header(path) requires one arguments.")
#basic
command += $${path}
return ($$command)
}
add_local_header( $$lib_header($$PWD) )
message($$INCLUDEPATH)