-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for windows 7/10 and latest version of clang added #12
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Marko <[email protected]>
Thanks for sharing this, but I don't think I'm going to merge it as-is. |
If its because of mixed up .pro file, i just fixed that. Sorry didn't see it last night, that was just there for testing reasons. Only thing i changed is FileExplorer class. Now it will add all available drives to external directory, and only populate those containing files, it maybe is not elegant, but it's kind of a workaround for program putting all files which paths are not starting with for example "C:\" inside special category. Btw that option is not tested on linux since i don't have it installed atm. PS. On windows, only ninja generates proper compile_commands.json, CMake generated one will result in emtpy index file for some reason PSS If you see something else you dont like, let me know, so i can try to fix it |
@lukicmarko91 have you an instruction how to build/install it on windows? it would be very useful for me. |
Lets start:
Note that in order for this to work, you will need to generate compile_commands.json with ninja, which is a bit tricky:
As an untested alternative, there is this repository : https://github.com/lukicmarko91/sourcewebWindowsDeploy.git, where i built and deployed sourceweb application, since its static linking, i think it should work out of the box (not sure tho.. ) Needs to be tested by someone who doesn't have clang libs and qt libs installed. But you need to generate compile_commands.json by yourself If you get stuck somewhere, im glad to help if i can, Best regards, Marko |
Signed-off-by: Marko [email protected]