Ole Christian Eidheim
Ole Christian Eidheim
I might be misunderstanding here, but what I do if I want different CMake options that are not default is creating the build directory contents manually. For instance, let's say...
Actually, this is now my favorite: ```sh CXXFLAGS=-Weverything juci . ``` Then choose Recreate Build in the Project menu:) edit: using the environment variable CXXFLAGS has the advantage of working...
I just realised that you can also add flags in `build/compile_commands.json` (after it is created) for individual files as well. But the source file in question has to be completely...
Yes, llvm's libclang is not yet 100% c++17 feature complete it seems. Hopefully this will change when llvm 6.0 is released in February. One can also try out the svn/git...
When you open a file, a search is made for the top level CMakeLists.txt or for instance meson.build. If it is found, the project path is set to the directory...
@matsbror Could you post a top level CMakeLists.txt file that is not working? Also, what OS are you on? One issue I can think of could be if the CMakeLists.txt...
Also, when identifying the top-level CMakeLists.txt, juCi++ looks for a line with `project([project-name])`.
I think @zalox is working on snippets, although one would have to be careful here. In the case above, for each would be better, and in case one would need...
This is strange, on my OS X laptop opening `src/source*` and `src/notebook.*`, 8 files in total, uses around 1GB of memory (which is to be expected). I'll try on my...
What version of libclang are you using? I'll see if there are any differences there.