mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
71452e9833
Qt Creator now has a "generic project" mode, in which it just acts as an auto-completing code editor. I tried using it on the entire Haiku project at once, but it's just too much for Qt Creator to handle. So instead, I created a script which generates project files for any given directory in the tree, as well as sets up the proper include directories. The project files themselves are .gitignore'd; use the script to create them. Works on Haiku. Did not test on Linux with a crosstools setup; but it should work there too.
6 lines
119 B
Plaintext
6 lines
119 B
Plaintext
# Ignore everything in this directory...
|
|
*
|
|
# Except for this file, and the script.
|
|
!.gitignore
|
|
!create_project_file.sh
|