I want to get the distribution name and version name of OS in qmake. For Linux, in some distributions (Debian, Ubuntu, CentOS, ...), I used:
DISTRIBUTION = $$system(cat /etc/issue | cut -d\' \' -f1)
message($$DISTRIBUTION)
OSVERSION = $$system(cat /etc/issue | cut -d\' \' -f3)
message($$OSVERSION)
On my Debian 7.8, the output is:
Project MESSAGE: Debian
Project MESSAGE: 7
This is a correct result. But I'm not sure about this way. I'm finding for Windows too: Windows 7, 8, ...
Do you have any idea about this in qmake?