Skip to content

Instantly share code, notes, and snippets.

View bbannier's full-sized avatar
💭
ヽ(。_°)ノ 𝚢𝚘𝚞 𝚘𝚗𝚕𝚢 𝕐𝕆𝕃𝕆 𝚘𝚗𝚌𝚎 🍿

Benjamin Bannier bbannier

💭
ヽ(。_°)ノ 𝚢𝚘𝚞 𝚘𝚗𝚕𝚢 𝕐𝕆𝕃𝕆 𝚘𝚗𝚌𝚎 🍿
View GitHub Profile
@bbannier
bbannier / iwyu-on-json.py
Last active October 6, 2015 15:02 — forked from rpavlik/iwyu-on-json.py
Run iwyu on compile_commands.json file created by CMake with CMAKE_EXPORT_COMPILE_COMMANDS
#!/usr/bin/env python
import json
import os
import subprocess
import sys
def run(cmd):
string_cmd = u" ".join(cmd)