common.pri
来自「QT4的utils库源码包.解压后运行./configure配置,然后make.」· PRI 代码 · 共 36 行
PRI
36 行
# common configuration options for all# qmake application projects in OOPDOCBOOK# requires environment variable to be set:# CPPLIBS - location of all libraries you build or reuse from code# examples.CONFIG += debug# The utils, dataobjects and plugins makefiles # install their libraries in# CPPLIBS, which is our "common built library" directory.# Make sure this variable points to a valid location.LIBS += -L$$(CPPLIBS)# To add a directory to the compiler's include search path...# this way we can $include <debugging.h> and it will find the headerINCLUDEPATH += $$(CPPLIBS)/utils# To explicitly say we want to link with the utils libraryLIBS += -lutils# place auto-generated files in "invisible" subdirectoriesunix { UI_DIR = .ui MOC_DIR = .moc OBJECTS_DIR = .obj}win32 { UI_DIR = _ui MOC_DIR = _moc OBJECTS_DIR = _obj}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?