mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
aea8493165
Qt Creator cannot import Subsurface directly because our buildsystem is not any of the three that it understands (qmake, cmake, autotools). So, instead, we can create the files Creator uses for "Other Project" projects. The files are: - subsurface.config: the #defines from the command line (-D args) - subsurface.creator: an XDG Desktop-style file with Creator settings - subsurface.files: the list of source and header files - subsurface.includes: the include paths (-I args) They are also added to .gitignore, alongside the *.user file that Creator uses to store per-user settings (editor configuration). Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
31 lines
446 B
Text
31 lines
446 B
Text
*.o
|
|
*.orig
|
|
*.rej
|
|
*.exe
|
|
*.dmg
|
|
*.moc
|
|
*.moc.cpp
|
|
*.patch
|
|
*.ui.h
|
|
*.xml
|
|
version.h
|
|
!dives/*.xml
|
|
*~
|
|
po/*.mo
|
|
qt-ui/ui_*.h
|
|
/subsurface
|
|
.dep/
|
|
share/
|
|
Documentation/docbook-xsl.css
|
|
Documentation/user-manual.html
|
|
Documentation/user-manual.pdf
|
|
Documentation/user-manual.text
|
|
packaging/windows/subsurface.nsi
|
|
packaging/macos/Info.plist
|
|
config.cache
|
|
*.qrc.cpp
|
|
/subsurface.config
|
|
/subsurface.creator
|
|
/subsurface.creator.user
|
|
/subsurface.files
|
|
/subsurface.includes
|