according to this link Xcode 5 should be able to interpret doxygen-like documentation, and make them show up in quick help. A similar question was already asked here, however there was no info on what to do if it doesn't work.
I'm working on an external c++ makefile project, using Xcode only to make coding and debugging easier. The project is compiling and running correctly. I'm using a framework called COIN-BCP, which is fully doxygen documented. I can also create the doxygen html documentation from the terminal, it works fine. However, in the quick help in Xcode it doesn't show up
My questions are:
Do I have to turn on any extra settings in Xcode to make this work?
Does the makefile project have anything to do with the problem? I'm not exactly sure when Xcode is supposed to interpret the doxygen comments. During compilation?
Does anyone have a working makefile project, where the quick help documentation works?
Any suggestions how I could fix this? Also, I'd be happy to try any workarounds.
Thanks in advance!
I have managed to solve this by following this guide.
Related
I want to build C++ GUI programs using Codeblocks+Wxwidgets+cmake. I tried to configure Wxwidgets with codeblocks IDE following the instructions given in the wxWidgets Discussion Forum as well as other Youtube tutorials.
I followed the youtube tutorials below.
Youtube tutorial
But, when 'DEBUG' and 'RELEASE' are being built, it keeps showing some kind of errors. As a result, the building was failed.
Please help me to solve this or suggest another easy way to do C++ GUI projects.
Thank you!
There is an excellent document explaining how to set up C::B with wxWidgets. It can be found here.
It is not about CMake-thingy, but it is written with enough details to help people understand how to setup the IDE.
So I suggest to delete C::B, delete wxWidgets, delete all projects you setup before and start all over, following the instructions from PB to a T.
If you hit a wall or something will not work - please comeback with the exact explanation.
I saw there was a previous question about installing PyQt on a Mac, but unfortunately I'm not quite able to comment on the thread so I had to post a new question. Like that user, I have been having issues downloading QT 4.11.1. I downloaded SIP as well as PyQT4 (link to instructions), but when I try to run python configure-ng.py from my downloads folder, I keep getting the same error saying:
Error: Use the --qmake argument to explicitly specify a working Qt qmake.
Unfortunately I can't find the Qt settings which means I can't keep following the directions from the previous answer and I was hoping someone might be able to help walk me through how to download this module. Sorry for the duplication and thanks in advance.
I am encountering the same problem that many others have in Eclipse, as is apparent by the many questions. I found an answer in [this question] (How can I enable breakpoints in Eclipse/CDT)
So I checked my Run-->Breakpoint Types and there were none available. How do I change that?
BTW: I don't believe this should matter, but I have set up my Eclipse project by hand and added the CMake files. I have to run CMake to generated dependencies in the code. But by creating my Eclipse project by hand I should be able to debug it. So, again, how do I add Breakpoint Types?
Thank you.
I hate it when I post a question and then find the answer!
I fixed this problem by following the instructions in the Eclipse Community Forums Question, which took me to CDT/User/FAQ Eclipsepedia - Enable the C/C++ Tracepoint functionality that told me what to do.
It worked! Yay! I hope this information helps others.
I've been working with Netbeans on Mac OS for the past few months (in C++) but have now moved to Ubuntu 12.04. I'm compiling via command line and just using Netbeans as an editor because I like the code assistance and things like that that it has. Normally it seems people want to disable code assistance and highlighting but in my case, they are not working and I don't know why. All the boxes are checked under the Editor>Highlighting tab. When I deliberately misspell a variable it does not complain. Syntax highlighting works fine. Is there some other thing I need to install?
I apologize is this is a very simple thing but googling and searching docs has not helped since it seems everyone is concerned with the opposite problem.
Does NetBeans use clang for static code analysis? Maybe you need to install it.
I just don't seem to be able to get OpenCV to work properly. Here's what I want to accomplish:
Use CodeBlocks (which I installed using codeblocks-10.05mingw-setup.exe) with OpenCV (installer: OpenCV-2.4.2.exe) on my Windows x64.
I've tried a lot of different configurations which will only bother you if I posted them all, so I hope you don't mind if I just ask the simple question: how do I get this to work?
I think I'm missing the smallest detail right now, so a detailed description of how to get started would be welcome.
If the OpenCV installer did the job, you should have by now OpenCV libraries and headers already installed in your system.
I would then go ahead and try to compile a hello world basic code, like the one you can get from here. If you would like to program using an IDE, like VisualC++ in Windows, you can follow this guide that will help you setting up the environment.
OpenCV team just introduced their new web site. There you can find Introduction to OpenCV section with installation instructions, including detailed instructions for Windows. Don't forget to cleanup your system before installation to avoid problems with mixing different install options. If you still can't get it working with CodeBlocks, follow Dan's advice and try compiling from command line.
When you are done with installation, go on and read there great new tutorials!