-
Notifications
You must be signed in to change notification settings - Fork 2.7k
python amalgamate.py - error #include <json/config.h> #782
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
Comments
I have the same error with you, finally i fix it with switching the branch to "0.y.z", and run "python amalgamate.py" |
I also had this same error. And everything worked after I added that |
Add it where? Can this be added only to |
After amalgamating the latest version adding that check around line 95. This is the code around that area (starting from line 83):
|
fatal error C1083: Cannot open include file: 'json/config.h': No such file or directory
Fix
#if !defined(JSON_IS_AMALGAMATION)
#include <json/config.h>
#endif
?
The text was updated successfully, but these errors were encountered: