We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, we separate the src and test files into different directories. As a result, we end up passing in .o files that the tests need like this:
psychic --cargs='src/file_under_test.o -I/path/to/headers'
It would be nice to do this instead:
psychic --cargs=src/file_under_test.o,-I/path/to/headers
Or just have psychic magically know. ;D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, we separate the src and test files into different directories. As a result, we end up passing in .o files that the tests need like this:
psychic --cargs='src/file_under_test.o -I/path/to/headers'
It would be nice to do this instead:
psychic --cargs=src/file_under_test.o,-I/path/to/headers
Or just have psychic magically know. ;D
The text was updated successfully, but these errors were encountered: