diff --git a/CMakeLists.txt b/CMakeLists.txt index 7eb966d..d23eec1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,11 +12,8 @@ set(BUILD_SHARED_LIBS ON) -include(submodules/Heart/QuasarAppLib/CMake/ccache.cmake) -include(submodules/Heart/QuasarAppLib/CMake/QuasarAppCITargets.cmake) -include(submodules/Heart/QuasarAppLib/CMake/ProjectOut.cmake) +include(submodules/Heart/QuasarAppLib/CMake/QuasarApp.cmake) include(submodules/Heart/QuasarAppLib/CMake/Version.cmake) -include(submodules/Heart/QuasarAppLib/CMake/QtUtils.cmake) if (DEFINED TARGET_PLATFORM_TOOLCHAIN) if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32") @@ -50,7 +47,6 @@ endif() SET(INSTALLER_DIR "${CMAKE_CURRENT_SOURCE_DIR}/installer/") SET(DATA_DIR "${INSTALLER_DIR}/packages/HanoiTowers/data") -SET(BIB_APP "${CMAKE_CURRENT_SOURCE_DIR}/hanoi_towers/build/Release/HanoiTowers") SET(TARGET_DIR "${CMAKE_CURRENT_SOURCE_DIR}/Distro") SET(PRODUCT_VER_Mj 1) SET(PRODUCT_VER_Mn 6) @@ -61,24 +57,6 @@ file(MAKE_DIRECTORY ${TARGET_DIR}) initAll() addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf) -addDeployFromCustomFile("Client" "${CMAKE_CURRENT_SOURCE_DIR}/Deploy/Client.json") -addDeployFromCustomFile("Server" "${CMAKE_CURRENT_SOURCE_DIR}/Deploy/Server.json") - -#if (WIN32) -# addDeployQIF("Client" ${INSTALLER_DIR} ${TARGET_DIR} "${INSTALLER_DIR}/config/configWin.xml") - -#else (WIN32) -# addDeployQIF("Client" ${INSTALLER_DIR} ${TARGET_DIR} "${INSTALLER_DIR}/config/configLinux.xml") - - #addDeploySnap("Client" ${TARGET_DIR}) - #addReleaseSnap("Client") - -#endif(WIN32) - -#addReleaseQif("Client" ${DATA_DIR} ${TARGET_DIR}) - -#addDeployAPK("Android" "${CMAKE_CURRENT_SOURCE_DIR}/hanoi_towers/android-libHanoiTowers.so-deployment-settings.json" "digitalface" "${SIGN_PATH}/DigitalFaceMobily.keystore" "${SIGN_STORE_PASSWORD}" "${TARGET_DIR}") - find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED) find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED) diff --git a/Deploy/Client.json b/Deploy/Client.json index 70df131..6b24e38 100755 --- a/Deploy/Client.json +++ b/Deploy/Client.json @@ -1,6 +1,8 @@ { "bin": [ - "./../HanoiTowers/build/Release/HanoiTowersClient" + "HanoiTowers/client/HanoiTowers", + "HanoiTowers/client/HanoiTowers.exe" + ], "clear": true, "libDir": "./../", diff --git a/Deploy/Server.json b/Deploy/Server.json index 0b006b4..ba2b3a3 100755 --- a/Deploy/Server.json +++ b/Deploy/Server.json @@ -1,7 +1,7 @@ { "bin": [ - "./../HanoiTowers/build/Release/HanoiTowersTerminal", - "./../HanoiTowers/build/Release/HanoiTowersServer" + "HanoiTowers/Terminal/HanoiTowersTerminal", + "HanoiTowers/Server/HanoiTowersServer" ], "clear": true, "libDir": "./../", diff --git a/HanoiTowers/Server/CMakeLists.txt b/HanoiTowers/Server/CMakeLists.txt index a709f9c..2afe718 100644 --- a/HanoiTowers/Server/CMakeLists.txt +++ b/HanoiTowers/Server/CMakeLists.txt @@ -24,3 +24,4 @@ add_executable(${CURRENT_PROJECT} ${SOURCE_CPP}) target_link_libraries(${CURRENT_PROJECT} PRIVATE HanoiTowersProtockol Patronum) target_include_directories(${CURRENT_PROJECT} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) +addDeployFromCustomFile("Server" "${CMAKE_SOURCE_DIR}/Deploy/Server.json") diff --git a/HanoiTowers/client/AndroidManifest.xml b/HanoiTowers/client/AndroidManifest.xml deleted file mode 100644 index 5784a97..0000000 --- a/HanoiTowers/client/AndroidManifest.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/HanoiTowers/client/CMakeLists.txt b/HanoiTowers/client/CMakeLists.txt index bc230ce..d9ae8e8 100644 --- a/HanoiTowers/client/CMakeLists.txt +++ b/HanoiTowers/client/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.1) -set(CURRENT_PROJECT "${PROJECT_NAME}Client") +set(CURRENT_PROJECT ${PROJECT_NAME}) set(CMAKE_INCLUDE_CURRENT_DIR ON) @@ -22,6 +22,7 @@ file(GLOB SOURCE_CPP ) if (ANDROID) + add_library(${CURRENT_PROJECT} ${SOURCE_CPP}) else() add_executable(${CURRENT_PROJECT} ${SOURCE_CPP}) @@ -39,3 +40,28 @@ set(LANGS ${CMAKE_CURRENT_SOURCE_DIR}/languages/en.ts prepareQM(${CURRENT_PROJECT} ${CMAKE_CURRENT_SOURCE_DIR} "${LANGS}") + +if (ANDROID) + set(HANOI_EXTRA_LIBS Heart + ${PROJECT_NAME}Protockol + QuasarApp + LoginView + Credits + QmlNotyfyService) + + addDeployAPK(${CURRENT_PROJECT} "${CMAKE_CURRENT_LIST_DIR}/android" "digitalface" "${SIGN_PATH}/DigitalFaceMobily.keystore" "${SIGN_STORE_PASSWORD}" "${TARGET_DIR}" "${HANOI_EXTRA_LIBS}") +else() + # Desctop deploying + addDeployFromCustomFile("Client" "${CMAKE_SOURCE_DIR}/Deploy/Client.json") + +# if (UNIX) +# #addDeployQIF("Client" ${INSTALLER_DIR} ${TARGET_DIR} "${INSTALLER_DIR}/config/configLinux.xml") +# #addDeploySnap("Client" ${TARGET_DIR}) + +# #addReleaseSnap("Client") + +# endif() +endif() + +#addReleaseQif("Client" ${DATA_DIR} ${TARGET_DIR}) + diff --git a/HanoiTowers/client/android/AndroidManifest.xml b/HanoiTowers/client/android/AndroidManifest.xml index a2b02de..f1556fc 100644 --- a/HanoiTowers/client/android/AndroidManifest.xml +++ b/HanoiTowers/client/android/AndroidManifest.xml @@ -1,71 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -74,4 +8,71 @@ Remove the comment if you do not require these default features. --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HanoiTowers/client/android/build.gradle b/HanoiTowers/client/android/build.gradle index 3a3e0cd..b6d056b 100644 --- a/HanoiTowers/client/android/build.gradle +++ b/HanoiTowers/client/android/build.gradle @@ -1,23 +1,23 @@ buildscript { repositories { + google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.3' + classpath 'com.android.tools.build:gradle:3.6.0' } } -allprojects { - repositories { - jcenter() - } +repositories { + google() + jcenter() } apply plugin: 'com.android.application' dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) } android { @@ -36,7 +36,7 @@ android { compileSdkVersion androidCompileSdkVersion.toInteger() - buildToolsVersion androidBuildToolsVersion + buildToolsVersion '28.0.3' sourceSets { main { @@ -44,14 +44,34 @@ android { java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java'] aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl'] res.srcDirs = [qt5AndroidDir + '/res', 'res'] - resources.srcDirs = ['src'] + resources.srcDirs = ['resources'] renderscript.srcDirs = ['src'] assets.srcDirs = ['assets'] jniLibs.srcDirs = ['libs'] } } + tasks.withType(JavaCompile) { + options.incremental = true + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + lintOptions { abortOnError false } + + // Do not compress Qt binary resources file + aaptOptions { + noCompress 'rcc' + } + + defaultConfig { + resConfig "en" + minSdkVersion = 22 + targetSdkVersion = 30 + } } diff --git a/HanoiTowers/client/android/gradle.properties b/HanoiTowers/client/android/gradle.properties index e784db1..fded106 100644 --- a/HanoiTowers/client/android/gradle.properties +++ b/HanoiTowers/client/android/gradle.properties @@ -1,9 +1,11 @@ -## This file is automatically generated by QtCreator. -# -# This file must *NOT* be checked into Version Control Systems, -# as it contains information specific to your local configuration. +# Project-wide Gradle settings. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx2048m -androidBuildToolsVersion=27.0.2 -androidCompileSdkVersion=23 -buildDir=.build -qt5AndroidDir=/media/E/Qt/5.10.1/android_armv7/src/android/java +# Gradle caching allows reusing the build artifacts from a previous +# build with the same inputs. However, over time, the cache size will +# grow. Uncomment the following line to enable it. +#org.gradle.caching=true diff --git a/HanoiTowers/client/android/gradle.properties~ b/HanoiTowers/client/android/gradle.properties~ deleted file mode 100644 index e784db1..0000000 --- a/HanoiTowers/client/android/gradle.properties~ +++ /dev/null @@ -1,9 +0,0 @@ -## This file is automatically generated by QtCreator. -# -# This file must *NOT* be checked into Version Control Systems, -# as it contains information specific to your local configuration. - -androidBuildToolsVersion=27.0.2 -androidCompileSdkVersion=23 -buildDir=.build -qt5AndroidDir=/media/E/Qt/5.10.1/android_armv7/src/android/java diff --git a/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.jar b/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.jar index 2b338a9..f6b961f 100644 Binary files a/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.jar and b/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.properties b/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.properties index 4244097..5028f28 100644 --- a/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.properties +++ b/HanoiTowers/client/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,5 @@ -#Mon Feb 20 10:43:22 EST 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-bin.zip diff --git a/HanoiTowers/client/android/gradlew b/HanoiTowers/client/android/gradlew index eeff5cc..cccdd3d 100755 --- a/HanoiTowers/client/android/gradlew +++ b/HanoiTowers/client/android/gradlew @@ -28,16 +28,16 @@ APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" +DEFAULT_JVM_OPTS="" # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" -warn ( ) { +warn () { echo "$*" } -die ( ) { +die () { echo echo "$*" echo @@ -155,7 +155,7 @@ if $cygwin ; then fi # Escape application args -save ( ) { +save () { for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done echo " " } diff --git a/HanoiTowers/client/android/gradlew.bat b/HanoiTowers/client/android/gradlew.bat index 65b35a4..f955316 100644 --- a/HanoiTowers/client/android/gradlew.bat +++ b/HanoiTowers/client/android/gradlew.bat @@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS=-Xmx1024m -Dfile.encoding=UTF-8 +set DEFAULT_JVM_OPTS= @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome diff --git a/HanoiTowers/client/android/local.properties b/HanoiTowers/client/android/local.properties deleted file mode 100644 index b37ea25..0000000 --- a/HanoiTowers/client/android/local.properties +++ /dev/null @@ -1,6 +0,0 @@ -## This file is automatically generated by QtCreator. -# -# This file must *NOT* be checked into Version Control Systems, -# as it contains information specific to your local configuration. - -sdk.dir=/media/E/Android/Sdk diff --git a/HanoiTowers/client/android/local.properties~ b/HanoiTowers/client/android/local.properties~ deleted file mode 100644 index b37ea25..0000000 --- a/HanoiTowers/client/android/local.properties~ +++ /dev/null @@ -1,6 +0,0 @@ -## This file is automatically generated by QtCreator. -# -# This file must *NOT* be checked into Version Control Systems, -# as it contains information specific to your local configuration. - -sdk.dir=/media/E/Android/Sdk diff --git a/HanoiTowers/client/android/res/drawable-hdpi/icon.png b/HanoiTowers/client/android/res/drawable-hdpi/icon.png index a6666fe..3d823b3 100644 Binary files a/HanoiTowers/client/android/res/drawable-hdpi/icon.png and b/HanoiTowers/client/android/res/drawable-hdpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-hdpi/logo.png b/HanoiTowers/client/android/res/drawable-hdpi/logo.png new file mode 100644 index 0000000..7e4c746 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-hdpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-hdpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-hdpi/logo_landscape.png new file mode 100644 index 0000000..3b7a702 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-hdpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-hdpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-hdpi/logo_portrait.png new file mode 100644 index 0000000..08fbdd4 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-hdpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/drawable-ldpi/icon.png b/HanoiTowers/client/android/res/drawable-ldpi/icon.png index a6666fe..6c5e549 100644 Binary files a/HanoiTowers/client/android/res/drawable-ldpi/icon.png and b/HanoiTowers/client/android/res/drawable-ldpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-ldpi/logo.png b/HanoiTowers/client/android/res/drawable-ldpi/logo.png new file mode 100644 index 0000000..eb506e6 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-ldpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-ldpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-ldpi/logo_landscape.png new file mode 100644 index 0000000..e80cb7d Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-ldpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-ldpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-ldpi/logo_portrait.png new file mode 100644 index 0000000..088140b Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-ldpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/drawable-mdpi/icon.png b/HanoiTowers/client/android/res/drawable-mdpi/icon.png index a6666fe..d5b0dfe 100644 Binary files a/HanoiTowers/client/android/res/drawable-mdpi/icon.png and b/HanoiTowers/client/android/res/drawable-mdpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-mdpi/logo.png b/HanoiTowers/client/android/res/drawable-mdpi/logo.png new file mode 100644 index 0000000..9cd4db1 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-mdpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-mdpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-mdpi/logo_landscape.png new file mode 100644 index 0000000..554393d Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-mdpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-mdpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-mdpi/logo_portrait.png new file mode 100644 index 0000000..28b23ed Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-mdpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/drawable-xhdpi/icon.png b/HanoiTowers/client/android/res/drawable-xhdpi/icon.png new file mode 100644 index 0000000..6ae07e7 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xhdpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-xhdpi/logo.png b/HanoiTowers/client/android/res/drawable-xhdpi/logo.png new file mode 100644 index 0000000..97399bf Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xhdpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-xhdpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-xhdpi/logo_landscape.png new file mode 100644 index 0000000..ca88be1 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xhdpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-xhdpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-xhdpi/logo_portrait.png new file mode 100644 index 0000000..1e0ae00 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xhdpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxhdpi/icon.png b/HanoiTowers/client/android/res/drawable-xxhdpi/icon.png new file mode 100644 index 0000000..dd18636 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxhdpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxhdpi/logo.png b/HanoiTowers/client/android/res/drawable-xxhdpi/logo.png new file mode 100644 index 0000000..214ebef Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxhdpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxhdpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-xxhdpi/logo_landscape.png new file mode 100644 index 0000000..ead3d51 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxhdpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxhdpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-xxhdpi/logo_portrait.png new file mode 100644 index 0000000..473104a Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxhdpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxxhdpi/icon.png b/HanoiTowers/client/android/res/drawable-xxxhdpi/icon.png new file mode 100644 index 0000000..b6dac5c Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxxhdpi/icon.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxxhdpi/logo.png b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo.png new file mode 100644 index 0000000..c6a527e Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_landscape.png b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_landscape.png new file mode 100644 index 0000000..7650395 Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_landscape.png differ diff --git a/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_portrait.png b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_portrait.png new file mode 100644 index 0000000..1df5a5e Binary files /dev/null and b/HanoiTowers/client/android/res/drawable-xxxhdpi/logo_portrait.png differ diff --git a/HanoiTowers/client/android/res/values/libs.xml b/HanoiTowers/client/android/res/values/libs.xml index 8f58881..6b1a4a2 100644 --- a/HanoiTowers/client/android/res/values/libs.xml +++ b/HanoiTowers/client/android/res/values/libs.xml @@ -1,7 +1,7 @@ - https://download.qt.io/ministro/android/qt5/qt-5.13 + https://download.qt.io/ministro/android/qt5/qt-5.14 - - - - - - + + - - + + + diff --git a/HanoiTowers/client/backEnd.cpp b/HanoiTowers/client/backEnd.cpp index e1a4f3b..d56a21b 100644 --- a/HanoiTowers/client/backEnd.cpp +++ b/HanoiTowers/client/backEnd.cpp @@ -37,7 +37,7 @@ BackEnd::BackEnd(QQmlApplicationEngine *engine): QObject(), _profile() { - _settings = QuasarAppUtils::Settings::get(); + _settings = QuasarAppUtils::Settings::instance(); _client = new HanoiClient(); _loginModel = new LoginView::LVMainModel("userLogin", this); diff --git a/doxygen.conf b/doxygen.conf index c4837c5..0ca9281 100644 --- a/doxygen.conf +++ b/doxygen.conf @@ -702,7 +702,7 @@ FILE_VERSION_FILTER = # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. -LAYOUT_FILE = Heart/QuasarAppLib/CMake/DoxyStyle/DoxygenLayout.xml +LAYOUT_FILE = subodules/Heart/QuasarAppLib/CMake/DoxyStyle/DoxygenLayout.xml # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib @@ -875,8 +875,7 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = ./HanoiTowers/client/QMLLoginView \ - ./HanoiTowers/client/SimpleQmlNotify +EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -1195,7 +1194,7 @@ HTML_STYLESHEET = # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_EXTRA_STYLESHEET = Heart/QuasarAppLib/CMake/DoxyStyle/doxygenStyles.css +HTML_EXTRA_STYLESHEET = subodules/Heart/QuasarAppLib/CMake/DoxyStyle/doxygenStyles.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note diff --git a/submodules/Credits b/submodules/Credits index a573a0a..10df0ee 160000 --- a/submodules/Credits +++ b/submodules/Credits @@ -1 +1 @@ -Subproject commit a573a0a898b51d4d5be4979bf70b09ceb0bc6cc8 +Subproject commit 10df0ee5c6b1e42a4f0f91c04a8b9eb9c2629ed4 diff --git a/submodules/Heart b/submodules/Heart index 471045e..81580d4 160000 --- a/submodules/Heart +++ b/submodules/Heart @@ -1 +1 @@ -Subproject commit 471045efa487c9816a1c771f7b4ac82b8b27f3f2 +Subproject commit 81580d42e4222556daefa13d99a0a9a5c0cdff58 diff --git a/submodules/Patronum b/submodules/Patronum index f7ea053..05eb4c7 160000 --- a/submodules/Patronum +++ b/submodules/Patronum @@ -1 +1 @@ -Subproject commit f7ea0538ee7f3c8f6af56f6d83d39cec5cdf68ee +Subproject commit 05eb4c7479f5e41bde0a53267de4abb6d513b647 diff --git a/submodules/QMLLoginView b/submodules/QMLLoginView index 8f98dde..5d5ee2c 160000 --- a/submodules/QMLLoginView +++ b/submodules/QMLLoginView @@ -1 +1 @@ -Subproject commit 8f98ddec2eb7a2eeefb0e21bdb0243b2dbe8a3e8 +Subproject commit 5d5ee2c0be4123b062f15492f388bb7ad6a01537 diff --git a/submodules/SimpleQmlNotify b/submodules/SimpleQmlNotify index 57e4287..8896d56 160000 --- a/submodules/SimpleQmlNotify +++ b/submodules/SimpleQmlNotify @@ -1 +1 @@ -Subproject commit 57e4287b3dbb387e59f401b9447f2a561a6c12e8 +Subproject commit 8896d568c74a5b11df52414eab1b3b7e51f238c2 diff --git a/submodules/ViewSolutions b/submodules/ViewSolutions index a6ab051..220b9b7 160000 --- a/submodules/ViewSolutions +++ b/submodules/ViewSolutions @@ -1 +1 @@ -Subproject commit a6ab0511d6ba7a901eedbf2fdb69207e61521a5b +Subproject commit 220b9b7035bcdc7b1cc79e0f0d8e31f0c10e5359