Using make-runner to compile C++ code reveals warnings and errors in the status nicely. However, links to the source of these warnings and errors open blank files when clicked. I suspect that nested directories are causing this.
My project folder looks like this:
.
├── BUTT
│ ├── BUTT
│ ├── BUTT.pro
│ ├── Common.h
│ ├── Fasta.cpp
│ ├── Fasta.h
│ ├── Fasta.o
│ ├── Index
│ │ ├── TaxBuilder.cpp
│ │ ├── TaxBuilder.h
│ │ ├── TaxNode.cpp
│ │ └── TaxNode.h
│ ├── Makefile
│ ├── NameNode.o
│ ├── Search
│ │ ├── CleverTaxConsensus.cpp
│ │ ├── CleverTaxConsensus.h
│ │ ├── NameNode.cpp
│ │ ├── NameNode.h
│ │ ├── SimpleTaxConsensus.cpp
│ │ ├── SimpleTaxConsensus.h
│ │ ├── TaxConsensus.cpp
│ │ ├── TaxConsensus.h
│ │ ├── TaxLevel.cpp
│ │ ├── TaxLevel.h
│ │ ├── TaxSearch.cpp
│ │ └── TaxSearch.h
│ ├── SeqToKMers.cpp
│ ├── SeqToKMers.h
│ ├── SimpleTaxConsensus.o
│ ├── TaxConsensus.o
│ ├── TaxLevel.o
│ ├── TestAll.o
│ ├── TestCleverTaxConsensus.o
│ ├── TestFasta.o
│ ├── TestHelper.o
│ ├── TestSimpleTaxConsensus.o
│ ├── Tests
│ │ ├── Fastas
│ │ ├── TestAll.cpp
│ │ ├── TestAll.h
│ │ ├── TestCleverTaxConsensus.cpp
│ │ ├── TestCleverTaxConsensus.h
│ │ ├── TestFasta.cpp
│ │ ├── TestFasta.h
│ │ ├── TestHelper.cpp
│ │ ├── TestHelper.h
│ │ ├── TestSeqToKMers.cpp
│ │ ├── TestSeqToKMers.h
│ │ ├── TestSimpleTaxConsensus.cpp
│ │ ├── TestSimpleTaxConsensus.h
│ │ ├── TestTaxBuilder.cpp
│ │ ├── TestTaxBuilder.h
│ │ ├── TestTaxSearch.cpp
│ │ └── TestTaxSearch.h
│ ├── deployment.pri
│ ├── main.cpp
│ └── tags
├── LICENSE
├── README.md
└── tags
I have also noticed that if you have several projects the files opened are mixed with the wrong projects.
Using make-runner to compile C++ code reveals warnings and errors in the status nicely. However, links to the source of these warnings and errors open blank files when clicked. I suspect that nested directories are causing this.
My project folder looks like this:
I have also noticed that if you have several projects the files opened are mixed with the wrong projects.