📄 common.pri
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -