aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp/framework-OSInterface.pri
blob: 3a456382cd742c13e2de1a992a72d3b3856610ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
QT *= core network quick concurrent

#include(../core/libLumina/LUtils.pri)
#include(../core/libLumina/LuminaXDG.pri)

HEADERS *= $${PWD}/framework-OSInterface.h
SOURCES *= $${PWD}/framework-OSInterface_private.cpp

#Load the proper OS *.cpp file
exists($${PWD}/framework-OSInterface-$${LINUX_DISTRO}.cpp){
  SOURCES *= $${PWD}/framework-OSInterface-$${LINUX_DISTRO}.cpp
}else:exists($${PWD}/framework-OSInterface-$${OS}.cpp){
  SOURCES *= $${PWD}/framework-OSInterface-$${OS}.cpp
}else{
  SOURCES *= $${PWD}/framework-OSInterface-template.cpp
}

INCLUDEPATH *= $${PWD}
bgstack15