diff --git a/cmake/android/QtCreateAPK.cmake b/cmake/android/QtCreateAPK.cmake index fcc942b68b..a22bfc33dc 100644 --- a/cmake/android/QtCreateAPK.cmake +++ b/cmake/android/QtCreateAPK.cmake @@ -67,7 +67,7 @@ macro(qt_create_apk) TARGET ${TARGET_NAME} COMMAND ${CMAKE_COMMAND} -E copy ${_LOCATED_DEP} "${ANDROID_APK_OUTPUT_DIR}/libs/${ANDROID_ABI}" ) - list(REMOVE_ITEM _DEPS_LIST _LOCATED_DEP) + list(REMOVE_ITEM _DEPS_LIST ${_LOCATED_DEP}) endif () endforeach() diff --git a/gvr-interface/src/GVRInterface.cpp b/gvr-interface/src/GVRInterface.cpp new file mode 100644 index 0000000000..1253eb9aa4 --- /dev/null +++ b/gvr-interface/src/GVRInterface.cpp @@ -0,0 +1,20 @@ +// +// GVRInterface.cpp +// gvr-interface/src +// +// Created by Stephen Birarda on 11/18/14. +// Copyright 2013 High Fidelity, Inc. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#include + +#include "GVRInterface.h" + +GVRInterface::GVRInterface(int argc, char* argv[]) : + QGuiApplication(argc, argv) +{ + NodeList* nodeList = NodeList::createInstance(NodeType::Agent); +} \ No newline at end of file diff --git a/gvr-interface/src/GVRInterface.h b/gvr-interface/src/GVRInterface.h new file mode 100644 index 0000000000..b318dabedd --- /dev/null +++ b/gvr-interface/src/GVRInterface.h @@ -0,0 +1,25 @@ +// +// GVRInterface.h +// gvr-interface/src +// +// Created by Stephen Birarda on 11/18/14. +// Copyright 2013 High Fidelity, Inc. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#ifndef hifi_GVRInterface_h +#define hifi_GVRInterface_h + +#include + +class GVRInterface : public QGuiApplication { + Q_OBJECT +public: + GVRInterface(int argc, char* argv[]); +private slots: + void processDatagrams(); +}; + +#endif // hifi_GVRInterface_h diff --git a/gvr-interface/src/main.cpp b/gvr-interface/src/main.cpp index 037761e6e3..b16cfb6cfa 100644 --- a/gvr-interface/src/main.cpp +++ b/gvr-interface/src/main.cpp @@ -9,9 +9,9 @@ // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // -#include +#include "GVRInterface.h" int main(int argc, char* argv[]) { - QGuiApplication app(argc, argv); + GVRInterface app(argc, argv); return app.exec(); } \ No newline at end of file