forked from qt-creator/qt-creator
QSharedMemory is using SVR4 shared memory for unix which is limited to 4 MB globally which is really hurting the performance for the designer. POSIX shared memory is lifting some of this constraints but still has some bugs on Max OS but generally works better. Change-Id: I74c1ffd56495f408cd9340cd159190a1175a4086 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
25 lines
857 B
Plaintext
25 lines
857 B
Plaintext
INCLUDEPATH += $$PWD/
|
|
|
|
HEADERS += $$PWD/addimportcontainer.h
|
|
HEADERS += $$PWD/sharedmemory.h
|
|
HEADERS += $$PWD/imagecontainer.h
|
|
HEADERS += $$PWD/idcontainer.h
|
|
HEADERS += $$PWD/informationcontainer.h
|
|
HEADERS += $$PWD/instancecontainer.h
|
|
HEADERS += $$PWD/reparentcontainer.h
|
|
HEADERS += $$PWD/propertyabstractcontainer.h
|
|
HEADERS += $$PWD/propertybindingcontainer.h
|
|
HEADERS += $$PWD/propertyvaluecontainer.h
|
|
|
|
SOURCES += $$PWD/addimportcontainer.cpp
|
|
unix:SOURCES += $$PWD/sharedmemory_unix.cpp
|
|
!unix:SOURCES += $$PWD/sharedmemory_qt.cpp
|
|
SOURCES += $$PWD/imagecontainer.cpp
|
|
SOURCES += $$PWD/idcontainer.cpp
|
|
SOURCES += $$PWD/informationcontainer.cpp
|
|
SOURCES += $$PWD/instancecontainer.cpp
|
|
SOURCES += $$PWD/reparentcontainer.cpp
|
|
SOURCES += $$PWD/propertyabstractcontainer.cpp
|
|
SOURCES += $$PWD/propertybindingcontainer.cpp
|
|
SOURCES += $$PWD/propertyvaluecontainer.cpp
|