📄 makefile
字号:
# debug flags need to be consistent with base build#CPPFLAGS = -O2 CPPFLAGS = -g LIBBASE = ../../../RGbuild/libRosegardenCommon.aINCPATH = -I..SRCS := test.C pitch.Cdefault: test utf8 colour transpose accidentals clean: rm -f test test.o pitch pitch.o utf8 utf8.o colour colour.o transpose.o transpose accidentals.o accidentals%.o: %.cpp $(CXX) $(CPPFLAGS) -c $< $(INCPATH) -o $@test: test.o $(CXX) $< $(LIBBASE) -o $@pitch: pitch.o $(CXX) $< $(LIBBASE) -o $@utf8: utf8.o $(CXX) $< $(LIBBASE) -o $@colour: colour.o $(CXX) $< $(LIBBASE) -o $@transpose: transpose.o $(CXX) $< $(LIBBASE) -o $@accidentals: accidentals.o $(CXX) $< $(LIBBASE) -o $@depend: makedepend $(INCPATH) -- $(CPPFLAGS) -- $(SRCS)# DO NOT DELETEtest.o: ../Event.h ../PropertyMap.h ../Property.h ../RealTime.htest.o: ../PropertyName.h ../Exception.h ../Segment.h ../Track.htest.o: ../XmlExportable.h ../Instrument.h ../NotationTypes.h #../StringHash.htest.o: ../XmlExportable.h ../Instrument.h ../NotationTypes.h test.o: ../RefreshStatus.h ../Composition.h ../FastVector.htest.o: ../Configuration.h ../ColourMap.h ../Colour.htest.o: ../SegmentNotationHelper.h ../SegmentPerformanceHelper.htest.o: ../MidiTypes.hpitch.o: ../NotationTypes.h ../Event.h ../PropertyMap.h ../Property.hpitch.o: ../RealTime.h ../PropertyName.h ../Exception.h ../Instrument.hpitch.o: ../XmlExportable.h #../StringHash.htranspose.o: ../NotationTypes.h accidentals.o: ../NotationTypes.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -