summaryrefslogtreecommitdiffstats
path: root/src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro')
m---------src/Runtime/ogl-runtime0
-rw-r--r--src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro73
2 files changed, 0 insertions, 73 deletions
diff --git a/src/Runtime/ogl-runtime b/src/Runtime/ogl-runtime
new file mode 160000
+Subproject 2025912174c4cf99270b7439ec3b021e1d089ae
diff --git a/src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro b/src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro
deleted file mode 100644
index 48929cfc..00000000
--- a/src/Runtime/ogl-runtime/src/ogl-runtime-dylib/ogl-runtime-dylib.pro
+++ /dev/null
@@ -1,73 +0,0 @@
-TEMPLATE = lib
-TARGET = qt3dsopengl
-VERSION = $$MODULE_VERSION
-
-DEFINES += QT3DS_RUNTIME_EXPORTS
-
-CONFIG += installed
-include(../commoninclude.pri)
-QT += qml
-
-boot2qt: {
- RESOURCES += ../../res.qrc
- DEFINES += EMBEDDED_LINUX # TODO: Is there a compile-time flag for boot2qt?
-}
-
-integrity|ios {
- RESOURCES += ../../res.qrc
-}
-
-SOURCES += \
- ../viewer/Qt3DSAudioPlayerImpl.cpp \
- ../viewer/Qt3DSViewerApp.cpp
-
-HEADERS += \
- ../viewer/qt3dsruntimeglobal.h \
- ../viewer/Qt3DSAudioPlayerImpl.h \
- ../viewer/Qt3DSViewerApp.h \
- ../viewer/Qt3DSViewerTimer.h
-
-linux|qnx|mingw {
- BEGIN_ARCHIVE = -Wl,--whole-archive
- END_ARCHIVE = -Wl,--no-whole-archive
-}
-
-STATICRUNTIME = \
- $$BEGIN_ARCHIVE \
- -lqt3dsruntimestatic$$qtPlatformTargetSuffix() \
- -lEASTL$$qtPlatformTargetSuffix() \
- $$END_ARCHIVE
-
-# On non-windows systems link the whole static archives and do not put them
-# in the prl file to prevent them being linked again by targets that depend
-# upon this shared library
-!win32:!CONFIG(static){
- QMAKE_LFLAGS += $$STATICRUNTIME
- LIBS += -lqt3dsqmlstreamer$$qtPlatformTargetSuffix()
-} else {
- LIBS += \
- $$STATICRUNTIME \
- -lqt3dsqmlstreamer$$qtPlatformTargetSuffix()
-}
-
-win32 {
- LIBS += \
- -lws2_32
-
- RESOURCES += ../../platformres.qrc
-}
-
-linux {
- LIBS += \
- -ldl \
- -lEGL
-}
-
-macos {
- QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/
-}
-
-PREDEPS_LIBS = qt3dsruntimestatic
-
-include(../../utils.pri)
-PRE_TARGETDEPS += $$fixLibPredeps($$LIBDIR, PREDEPS_LIBS)