forked from qt-creator/qt-creator
* Qt Creator base-commit: f77af5e336
* Stand-alone plugin source tree for integration into qtc super-project
* Original release: https://github.com/nomadbyte/qtcreator-plugin-fossil
* Adapted from Bazaar plugin implementation
Configuring Fossil
------------------
1. Download the [Fossil SCM client](http://fossil-scm.org) and install `fossil`
executable file in your `PATH`.
2. Create or designate a directory to store local Fossil repositories and
remote clones. For example: `~/fossils/qt`.
3. Configure Version Control Options for the Fossil plugin to use
the designated directory as `Local Repositories Default path`.
Now Fossil should become available as a VCS choice to create new local
repositories, as well as a choice in `New File or Project` to clone a
remote Fossil repository.
Change-Id: I630184c1b344184d9e08ae2fc24a5e4766f834b9
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
46 lines
1.3 KiB
Prolog
46 lines
1.3 KiB
Prolog
isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$(QTC_SOURCE)
|
|
isEmpty(IDE_SOURCE_TREE): error("You need to set the environment variable QTC_SOURCE to point to the directory where the Qt Creator sources are")
|
|
|
|
isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$(QTC_BUILD)
|
|
isEmpty(IDE_BUILD_TREE): error("You need to set the environment variable QTC_BUILD to point to the directory where Qt Creator was built")
|
|
|
|
include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
|
|
SOURCES += \
|
|
fossilclient.cpp \
|
|
fossilcontrol.cpp \
|
|
fossilplugin.cpp \
|
|
optionspage.cpp \
|
|
fossilsettings.cpp \
|
|
commiteditor.cpp \
|
|
fossilcommitwidget.cpp \
|
|
fossileditor.cpp \
|
|
annotationhighlighter.cpp \
|
|
pullorpushdialog.cpp \
|
|
branchinfo.cpp \
|
|
configuredialog.cpp \
|
|
revisioninfo.cpp \
|
|
wizard/fossiljsextension.cpp
|
|
HEADERS += \
|
|
fossilclient.h \
|
|
constants.h \
|
|
fossilcontrol.h \
|
|
fossilplugin.h \
|
|
optionspage.h \
|
|
fossilsettings.h \
|
|
commiteditor.h \
|
|
fossilcommitwidget.h \
|
|
fossileditor.h \
|
|
annotationhighlighter.h \
|
|
pullorpushdialog.h \
|
|
branchinfo.h \
|
|
configuredialog.h \
|
|
revisioninfo.h \
|
|
wizard/fossiljsextension.h
|
|
FORMS += \
|
|
optionspage.ui \
|
|
revertdialog.ui \
|
|
fossilcommitpanel.ui \
|
|
pullorpushdialog.ui \
|
|
configuredialog.ui
|
|
RESOURCES += fossil.qrc
|