📄 makefile.am
字号:
bin_PROGRAMS = gpsmgr%.moc.cpp: %.h $(MOC) -o $@ $<%.h: %.ui $(UIC) -o $@ $<%.cpp: %.ui $(UIC) -o $@ -impl $*.h $<# command for creating .res file from .rc on Win32%.res: %.rc rc $<#if WIN32#gpsmgr_RES = gpsmgr.res#else # WIN32#gpsmgr_RES =#endif # WIN32UI_SRCS = \ dataStoreUIBase.ui \ gpsMgrUIBase.ui \ groupEditorWidgetBase.ui \ trackEditorUIBase.ui \ trackPointEditorUIBase.ui \ waypointEditorUIBase.uiUI_CPPS = $(UI_SRCS:.ui=.cpp)UI_HDRS = $(UI_SRCS:.ui=.h)UI_MOC = $(UI_SRCS:.ui=.moc.cpp)gpsmgr_UI = \ $(UI_CPPS) \ $(UI_HDRS)# There has to be a better way to do thisdataStoreUIBase.h: dataStoreUIBase.uidataStoreUIBase.cpp: dataStoreUIBase.ui dataStoreUIBase.hgpsMgrUIBase.h: gpsMgrUIBase.uigpsMgrUIBase.cpp: gpsMgrUIBase.ui gpsMgrUIBase.hgroupEditorWidgetBase.h: groupEditorWidgetBase.uigroupEditorWidgetBase.cpp: groupEditorWidgetBase.ui groupEditorWidgetBase.htrackEditorUIBase.h: trackEditorUIBase.uitrackEditorUIbase.cpp: trackEditorUIBase.ui trackEditorUIBase.htrackPointEditorUIBase.h: trackPointEditorUIBase.uitrackPointEditorUIBase.cpp: trackPointEditorUIBase.ui trackPointEditorUIBase.hwaypointEditorUIBase.h: waypointEditorUIBase.uiwaypointEditorUIBase.cpp: waypointEditorUIBase.ui waypointEditorUIBase.hgpsmgr_MOC = \ $(UI_MOC)gpsmgr_SOURCES = \ dataStoreUI.cpp \ datastorereader.cpp \ groupobject.cpp \ main.cpp \ track.cpp \ waypointEditorUI.cpp \ datastore.cpp \ datastorewriter.cpp \ groupEditorWidget.cpp \ latlon.cpp \ listItemPopup.cpp \ route.cpp \ saxReaderBase.cpp \ trackEditorUI.cpp \ trackPointEditorUI.cpp \ waypoint.cpp \ xmlPrinter.cpp \ $(gpsmgr_UI) \ $(gpsmgr_MOC)noinst_HEADERS = \ dataStoreUI.h \ datastore.h \ datastorewriter.h \ exceptions.h \ gpsmgr.h \ latlon.h \ listItemPopup.h \ saxReaderBase.h \ waypoint.h \ datastorereader.h \ datatypes.h \ gpsMgrUI.h \ groupEditorWidget.h \ groupobject.h \ objectstore.h \ route.h \ track.h \ trackEditorUI.h \ trackPointEditorUI.h \ waypointEditorUI.h \ xmlPrinter.hBUILT_SOURCES = $(gpsmgr_MOC) $(gpsmgr_UI) $(gpsmgr_RES)gpsmgr_LDADD = $(QT_GUILINK) $(QT_LDADD) $(gpsmgr_RES) $(EXTRA_LDADD)AM_CXXFLAGS := $(AM_CXXFLAGS) $(EXTRA_CXXFLAGS) -I../include $(QT_CXXFLAGS)CLEANFILES = $(BUILT_SOURCES)EXTRA_DIST = $(UI_SRCS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -