mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:18:24 +02:00
shuffle files with QtGui dependency out of shared
This commit is contained in:
parent
c3f57cd07f
commit
473ae10104
11 changed files with 23 additions and 14 deletions
|
@ -27,11 +27,15 @@ macro(LINK_HIFI_LIBRARIES)
|
||||||
|
|
||||||
# ask the library what its dynamic dependencies are and link them
|
# ask the library what its dynamic dependencies are and link them
|
||||||
get_target_property(LINKED_TARGET_DEPENDENCY_LIBRARIES ${HIFI_LIBRARY} DEPENDENCY_LIBRARIES)
|
get_target_property(LINKED_TARGET_DEPENDENCY_LIBRARIES ${HIFI_LIBRARY} DEPENDENCY_LIBRARIES)
|
||||||
list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK ${LINKED_TARGET_DEPENDENCY_LIBRARIES})
|
if (LINKED_TARGET_DEPENDENCY_LIBRARIES)
|
||||||
|
list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK ${LINKED_TARGET_DEPENDENCY_LIBRARIES})
|
||||||
|
endif ()
|
||||||
|
|
||||||
# ask the library what its include dependencies are and link them
|
# ask the library what its include dependencies are and link them
|
||||||
get_target_property(LINKED_TARGET_DEPENDENCY_INCLUDES ${HIFI_LIBRARY} DEPENDENCY_INCLUDES)
|
get_target_property(LINKED_TARGET_DEPENDENCY_INCLUDES ${HIFI_LIBRARY} DEPENDENCY_INCLUDES)
|
||||||
list(APPEND ${TARGET_NAME}_DEPENDENCY_INCLUDES ${LINKED_TARGET_DEPENDENCY_INCLUDES})
|
if (LINKED_TARGET_DEPENDENCY_INCLUDES)
|
||||||
|
list(APPEND ${TARGET_NAME}_DEPENDENCY_INCLUDES ${LINKED_TARGET_DEPENDENCY_INCLUDES})
|
||||||
|
endif()
|
||||||
|
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ setup_hifi_library()
|
||||||
|
|
||||||
include_directories(${ANDROID_NDK}/sources/android/native_app_glue)
|
include_directories(${ANDROID_NDK}/sources/android/native_app_glue)
|
||||||
|
|
||||||
# include_glm()
|
include_glm()
|
||||||
#
|
|
||||||
# link_hifi_libraries(shared networking)
|
link_hifi_libraries(shared networking)
|
||||||
link_shared_dependencies()
|
link_shared_dependencies()
|
||||||
|
|
||||||
target_link_libraries(${TARGET_NAME} log android)
|
target_link_libraries(${TARGET_NAME} log android)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <android_native_app_glue.h>
|
#include <android_native_app_glue.h>
|
||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
|
|
||||||
// #include <NodeList.h>
|
#include <NodeList.h>
|
||||||
|
|
||||||
// usage of log
|
// usage of log
|
||||||
#define APP_NAME "Interface"
|
#define APP_NAME "Interface"
|
||||||
|
@ -38,7 +38,7 @@ void android_main(struct android_app* state) {
|
||||||
// set up so when commands happen we call our custom handler
|
// set up so when commands happen we call our custom handler
|
||||||
state->onAppCmd = custom_handle_cmd;
|
state->onAppCmd = custom_handle_cmd;
|
||||||
|
|
||||||
// NodeList* nodeList = NodeList::createInstance(NodeType::Agent);
|
NodeList* nodeList = NodeList::createInstance(NodeType::Agent);
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
struct android_poll_source* source;
|
struct android_poll_source* source;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// FileUtils.cpp
|
// FileUtils.cpp
|
||||||
// libraries/shared/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Stojce Slavkovski on 12/23/13.
|
// Created by Stojce Slavkovski on 12/23/13.
|
||||||
// Copyright 2013 High Fidelity, Inc.
|
// Copyright 2013 High Fidelity, Inc.
|
||||||
|
@ -9,9 +9,14 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#include <qdir.h>
|
||||||
|
#include <qfileinfo.h>
|
||||||
|
#include <qdesktopservices.h>
|
||||||
|
#include <qprocess.h>
|
||||||
|
#include <qurl.h>
|
||||||
|
|
||||||
#include "FileUtils.h"
|
#include "FileUtils.h"
|
||||||
#include <QtCore>
|
|
||||||
#include <QDesktopServices>
|
|
||||||
|
|
||||||
void FileUtils::locateFile(QString filePath) {
|
void FileUtils::locateFile(QString filePath) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// FileUtils.h
|
// FileUtils.h
|
||||||
// libraries/shared/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Stojce Slavkovski on 12/23/13.
|
// Created by Stojce Slavkovski on 12/23/13.
|
||||||
// Copyright 2013 High Fidelity, Inc.
|
// Copyright 2013 High Fidelity, Inc.
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// UIUtil.cpp
|
// UIUtil.cpp
|
||||||
// library/shared/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Ryan Huffman on 09/02/2014.
|
// Created by Ryan Huffman on 09/02/2014.
|
||||||
// Copyright 2014 High Fidelity, Inc.
|
// Copyright 2014 High Fidelity, Inc.
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// UIUtil.h
|
// UIUtil.h
|
||||||
// library/shared/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Ryan Huffman on 09/02/2014.
|
// Created by Ryan Huffman on 09/02/2014.
|
||||||
// Copyright 2014 High Fidelity, Inc.
|
// Copyright 2014 High Fidelity, Inc.
|
|
@ -1,7 +1,7 @@
|
||||||
set(TARGET_NAME shared)
|
set(TARGET_NAME shared)
|
||||||
|
|
||||||
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
||||||
setup_hifi_library(Network Widgets)
|
setup_hifi_library(Network)
|
||||||
|
|
||||||
# call macro to link our dependencies and bubble them up via a property on our target
|
# call macro to link our dependencies and bubble them up via a property on our target
|
||||||
link_shared_dependencies()
|
link_shared_dependencies()
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue