logic: compilationdatabase parsing

* compilationdatabase cleaned
* add SolutionparserCompliationDatabase
* added cmake_build_type_init as release for better autocomplition on linux
* external source handling for different linux versions
* clean script remove windows symbolic links only on windows
* linux external lib handling for different build easier
This commit is contained in:
Andreas Stallinger
2016-02-18 17:20:27 +01:00
parent 59232bda69
commit a8f5fd02f1
11 changed files with 265 additions and 72 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/python2
#simple script to get System and architecture as a string
import os
import platform
arch = platform.machine()
system = platform.system()
dist = (platform.linux_distribution(distname="unknown", full_distribution_name=0)[0])
s = system + '-' + arch + '/' + dist
print (s)