├── .gitignore ├── CMakeLists.txt ├── README.md └── xcompmgr-simple.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | cmake-build-debug/* 3 | out/* -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanc3/xcompmgr-simple/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanc3/xcompmgr-simple/HEAD/README.md -------------------------------------------------------------------------------- /xcompmgr-simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanc3/xcompmgr-simple/HEAD/xcompmgr-simple.cpp --------------------------------------------------------------------------------