-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6d34100
Showing
102 changed files
with
10,456 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# This file is used to ignore files which are generated | ||
# ---------------------------------------------------------------------------- | ||
|
||
*~ | ||
*.autosave | ||
*.a | ||
*.core | ||
*.moc | ||
*.o | ||
*.obj | ||
*.orig | ||
*.rej | ||
*.so | ||
*.so.* | ||
*_pch.h.cpp | ||
*_resource.rc | ||
*.qm | ||
.#* | ||
*.*# | ||
core | ||
!core/ | ||
tags | ||
.DS_Store | ||
.directory | ||
*.debug | ||
Makefile* | ||
*.prl | ||
*.app | ||
moc_*.cpp | ||
ui_*.h | ||
qrc_*.cpp | ||
Thumbs.db | ||
*.res | ||
*.rc | ||
/.qmake.cache | ||
/.qmake.stash | ||
|
||
# qtcreator generated files | ||
*.pro.user* | ||
CMakeLists.txt.user* | ||
|
||
# xemacs temporary files | ||
*.flc | ||
|
||
# Vim temporary files | ||
.*.swp | ||
|
||
# Visual Studio generated files | ||
*.ib_pdb_index | ||
*.idb | ||
*.ilk | ||
*.pdb | ||
*.sln | ||
*.suo | ||
*.vcproj | ||
*vcproj.*.*.user | ||
*.ncb | ||
*.sdf | ||
*.opensdf | ||
*.vcxproj | ||
*vcxproj.* | ||
|
||
# MinGW generated files | ||
*.Debug | ||
*.Release | ||
|
||
# Python byte code | ||
*.pyc | ||
|
||
# Binaries | ||
# -------- | ||
*.dll | ||
*.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
# Copyright (C) 2024 Sauntor <sauntor@live.com> | ||
|
||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
|
||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
################################ | ||
# Main executable for Qili # | ||
################################ | ||
|
||
set(APP_TS_FILES QiliApp_zh_CN.ts) | ||
set(APP_RC_FILES QiliApp.qrc) | ||
set(APP_SRC_FILES | ||
|
||
QiliGlobal.h | ||
QiliAppGlobal.h | ||
Utility.h | ||
Utility.cpp | ||
|
||
QiliCookieJar.h | ||
QiliCookieJar.cpp | ||
QiliHttp.h | ||
QiliHttp.cpp | ||
|
||
QiliProtocol.h | ||
QiliProtocol.cpp | ||
QiliSocket.h | ||
QiliSocket.cpp | ||
|
||
QiliSettings.h | ||
QiliSettings.cpp | ||
QiliSpeaker.h | ||
QiliSpeaker.cpp | ||
QiliConnection.h | ||
QiliConnection.cpp | ||
|
||
QiliSettingsDialog.h | ||
QiliSettingsDialog.cpp | ||
QiliSettingsDialog.ui | ||
QiliLogin.h | ||
QiliLogin.cpp | ||
QiliLogin.ui | ||
QiliSubtitleLogger.h | ||
QiliSubtitleLogger.cpp | ||
QiliSubtitleLogger.ui | ||
QiliThanksDialog.h | ||
QiliThanksDialog.cpp | ||
QiliThanksDialog.ui | ||
|
||
QiliTray.h | ||
QiliTray.cpp | ||
|
||
QiliApp.h | ||
QiliApp.cpp | ||
) | ||
|
||
|
||
qili_add_library(QiliApp) | ||
target_sources(QiliApp PRIVATE | ||
${APP_SRC_FILES} | ||
${APP_RC_FILES} | ||
${APP_TS_FILES} | ||
) | ||
target_compile_definitions(QiliApp PRIVATE QILI_APP_LIBRARY) | ||
add_dependencies(QiliApp QRCodeGen QiliWidgets) | ||
|
||
if (QT_VERSION_MAJOR EQUAL 5) | ||
qt5_create_translation(APP_QM_FILES ${APP_SRC_FILES} ${APP_TS_FILES}) | ||
add_custom_target(QiliApp_lrelease ALL DEPENDS ${APP_QM_FILES}) | ||
else() | ||
qt_add_translations(QiliApp TS_FILES ${APP_TS_FILES} QM_FILES_OUTPUT_VARIABLE APP_QM_FILES) | ||
endif() | ||
|
||
target_link_libraries(QiliApp | ||
PRIVATE | ||
Qt::Core | ||
Qt::Network | ||
Qt::WebSockets | ||
Qt::TextToSpeech | ||
Qt::Widgets | ||
WrapBrotli::WrapBrotliDec | ||
$<TARGET_LINKER_FILE:QRCodeGen> | ||
$<TARGET_LINKER_FILE:QiliWidgets> | ||
) | ||
|
||
target_include_directories(QiliApp PRIVATE ${CMAKE_BINARY_DIR}) | ||
target_include_directories(QiliApp PRIVATE ${CMAKE_SOURCE_DIR}/Thirdparty) | ||
target_include_directories(QiliApp PRIVATE ${CMAKE_SOURCE_DIR}/Widgets) | ||
|
||
if(${QT_VERSION} VERSION_LESS 6.1.0) | ||
set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER me.sauntor.Qili) | ||
endif() | ||
set_target_properties(QiliApp PROPERTIES | ||
${BUNDLE_ID_OPTION} | ||
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} | ||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} | ||
MACOSX_BUNDLE TRUE | ||
WIN32_EXECUTABLE TRUE | ||
) | ||
|
||
install(TARGETS QiliApp | ||
BUNDLE DESTINATION . | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
COMPONENT Runtime | ||
) | ||
|
||
install(FILES ../Widgets/images/qili.png DESTINATION ${CMAKE_INSTALL_DATADIR}/pixmaps) | ||
install(FILES ${APP_QM_FILES} DESTINATION ${CMAKE_INSTALL_DATADIR}/translations) | ||
|
||
qili_finalize_target(QiliApp) | ||
|
||
|
||
qili_add_executable(QiliLauncher) | ||
set_target_properties(QiliLauncher PROPERTIES OUTPUT_NAME Qili) | ||
target_include_directories(QiliLauncher PRIVATE ${CMAKE_BINARY_DIR}) | ||
target_sources(QiliLauncher PRIVATE | ||
main.cpp | ||
QiliLogger.h | ||
QiliLogger.cpp | ||
) | ||
if (WIN32) | ||
target_sources(QiliLauncher PRIVATE Qili.rc) | ||
endif() | ||
add_dependencies(QiliLauncher QiliApp) | ||
target_link_libraries(QiliLauncher PRIVATE Qt::Core Qt::Gui Qt::Widgets) | ||
install(TARGETS QiliLauncher | ||
BUNDLE DESTINATION . | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
COMPONENT Runtime | ||
) | ||
|
||
if (USE_IFW OR WIN32 OR APPLE) | ||
|
||
if (WIN32 OR APPLE) | ||
set(BROTLI_LIB_COM "${CMAKE_SHARED_LIBRARY_PREFIX}brotlicommon${CMAKE_SHARED_LIBRARY_SUFFIX}") | ||
set(BROTLI_LIB_ENC "${CMAKE_SHARED_LIBRARY_PREFIX}brotlienc${CMAKE_SHARED_LIBRARY_SUFFIX}") | ||
set(BROTLI_LIB_DEC "${CMAKE_SHARED_LIBRARY_PREFIX}brotlidec${CMAKE_SHARED_LIBRARY_SUFFIX}") | ||
if (NOT BROTLI_PATH) | ||
find_path(BROTLI_PATH | ||
NAMES ${BROTLI_LIB_COM} ${BROTLI_LIB_ENC} ${BROTLI_LIB_DEC} | ||
) | ||
endif() | ||
if (NOT BROTLI_PATH) | ||
if (WIN32) | ||
find_path(BROTLI_PATH | ||
NAMES ${BROTLI_LIB_COM} ${BROTLI_LIB_ENC} ${BROTLI_LIB_DEC} | ||
# trying to find it from vcpkg | ||
HINTS "${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/bin" | ||
) | ||
elseif(APPLE) | ||
message(FATAL_ERROR "adopt Qili to MacOS and delete this line") | ||
endif() | ||
else() | ||
find_path(BROTLI_PATH | ||
NAMES ${BROTLI_LIB_COM} ${BROTLI_LIB_ENC} ${BROTLI_LIB_DEC} | ||
HINTS "${BROTLI_PATH}" "${BROTLI_PATH}/bin" "${BROTLI_PATH}/lib64" "${BROTLI_PATH}/lib" | ||
) | ||
endif() | ||
|
||
if (NOT BROTLI_PATH) | ||
message(FATAL_ERROR "Please build with -DBROTLI_PATH=/path/to/brolti/libraries/ !") | ||
else() | ||
message(STATUS "Build with Brotli binaries from ${BROTLI_PATH}") | ||
endif() | ||
|
||
install(FILES | ||
${BROTLI_PATH}/${BROTLI_LIB_COM} | ||
${BROTLI_PATH}/${BROTLI_LIB_ENC} | ||
${BROTLI_PATH}/${BROTLI_LIB_DEC} | ||
DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
) | ||
|
||
qt_generate_deploy_script( | ||
TARGET QiliLauncher | ||
OUTPUT_SCRIPT deploy_script | ||
CONTENT [[ | ||
set(QT_DEPLOY_TRANSLATIONS_DIR "${CMAKE_INSTALL_DATADIR}/translations") | ||
qt_deploy_translations(LOCALES en zh_CN zh_TW) | ||
qt_deploy_runtime_dependencies( | ||
EXECUTABLE $<TARGET_FILE:QiliLauncher> | ||
ADDITIONAL_LIBRARIES | ||
$<TARGET_FILE:QiliApp> | ||
$<TARGET_FILE:QiliWidgets> | ||
$<TARGET_FILE:QRCodeGen> | ||
BIN_DIR ${CMAKE_INSTALL_BINDIR} | ||
LIB_DIR ${CMAKE_INSTALL_LIBDIR} | ||
GENERATE_QT_CONF | ||
NO_TRANSLATIONS | ||
VERBOSE | ||
) | ||
]] | ||
) | ||
endif() | ||
|
||
if (LINUX) | ||
qt_generate_deploy_script( | ||
TARGET QiliLauncher | ||
OUTPUT_SCRIPT deploy_script | ||
CONTENT [[ | ||
qt_deploy_runtime_dependencies( | ||
EXECUTABLE $<TARGET_FILE:QiliLauncher> | ||
ADDITIONAL_LIBRARIES | ||
$<TARGET_FILE:QiliApp> | ||
$<TARGET_FILE:QiliWidgets> | ||
$<TARGET_FILE:QRCodeGen> | ||
BIN_DIR ${CMAKE_INSTALL_BINDIR} | ||
LIB_DIR ${CMAKE_INSTALL_LIBDIR} | ||
NO_TRANSLATIONS | ||
VERBOSE | ||
) | ||
]] | ||
) | ||
endif() | ||
|
||
install(SCRIPT ${deploy_script}) | ||
endif() | ||
|
||
qili_finalize_executable(QiliLauncher) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* Copyright (C) 2024 Sauntor <sauntor@live.com> | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef CONFIG_H | ||
#define CONFIG_H | ||
|
||
#define QILI_VERSION "@Qili_VERSION@" | ||
#define QILI_RELEASE_BUILD @QILI_RELEASE_BUILD@ | ||
#cmakedefine01 QILI_ON_WIN32 | ||
#cmakedefine01 QILI_ON_LINUX | ||
#cmakedefine01 QILI_ON_UNIX | ||
#cmakedefine01 QILI_ON_APPLE | ||
|
||
#endif // CONFIG_H |
Oops, something went wrong.