mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
chat(build): fix broken installer on macOS (#2973)
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
parent
2975768565
commit
69782cf713
@ -128,6 +128,10 @@ foreach(BUILD_VARIANT IN LISTS BUILD_VARIANTS)
|
|||||||
# Include GGML
|
# Include GGML
|
||||||
include_ggml(-mainline-${BUILD_VARIANT})
|
include_ggml(-mainline-${BUILD_VARIANT})
|
||||||
|
|
||||||
|
if (BUILD_VARIANT MATCHES metal)
|
||||||
|
set(GGML_METALLIB "${GGML_METALLIB}" PARENT_SCOPE)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Function for preparing individual implementations
|
# Function for preparing individual implementations
|
||||||
function(prepare_target TARGET_NAME BASE_LIB)
|
function(prepare_target TARGET_NAME BASE_LIB)
|
||||||
set(TARGET_NAME ${TARGET_NAME}-${BUILD_VARIANT})
|
set(TARGET_NAME ${TARGET_NAME}-${BUILD_VARIANT})
|
||||||
|
@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||||||
- Significantly improve API server request parsing and response correctness ([#2929](https://github.com/nomic-ai/gpt4all/pull/2929))
|
- Significantly improve API server request parsing and response correctness ([#2929](https://github.com/nomic-ai/gpt4all/pull/2929))
|
||||||
- Remove unnecessary dependency on Qt WaylandCompositor module ([#2949](https://github.com/nomic-ai/gpt4all/pull/2949))
|
- Remove unnecessary dependency on Qt WaylandCompositor module ([#2949](https://github.com/nomic-ai/gpt4all/pull/2949))
|
||||||
- Update translations ([#2970](https://github.com/nomic-ai/gpt4all/pull/2970))
|
- Update translations ([#2970](https://github.com/nomic-ai/gpt4all/pull/2970))
|
||||||
|
- Fix macOS installer and remove extra installed copy of Nomic Embed ([#2973](https://github.com/nomic-ai/gpt4all/pull/2973))
|
||||||
|
|
||||||
## [3.2.1] - 2024-08-13
|
## [3.2.1] - 2024-08-13
|
||||||
|
|
||||||
|
@ -114,8 +114,6 @@ elseif (APPLE)
|
|||||||
|
|
||||||
# And the following tells CMake where to find and install the file itself.
|
# And the following tells CMake where to find and install the file itself.
|
||||||
set(APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/resources/gpt4all.icns")
|
set(APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/resources/gpt4all.icns")
|
||||||
set_source_files_properties(${APP_ICON_RESOURCE} PROPERTIES
|
|
||||||
MACOSX_PACKAGE_LOCATION "Resources")
|
|
||||||
list(APPEND CHAT_EXE_RESOURCES "${APP_ICON_RESOURCE}")
|
list(APPEND CHAT_EXE_RESOURCES "${APP_ICON_RESOURCE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -137,11 +135,84 @@ endif()
|
|||||||
|
|
||||||
set(QAPPLICATION_CLASS QGuiApplication)
|
set(QAPPLICATION_CLASS QGuiApplication)
|
||||||
add_subdirectory(deps/SingleApplication)
|
add_subdirectory(deps/SingleApplication)
|
||||||
add_subdirectory(src)
|
|
||||||
|
|
||||||
target_sources(chat PRIVATE ${APP_ICON_RESOURCE} ${CHAT_EXE_RESOURCES})
|
if (DEFINED GGML_METALLIB)
|
||||||
|
set_source_files_properties("${GGML_METALLIB}" PROPERTIES GENERATED ON)
|
||||||
|
endif()
|
||||||
|
if (APPLE)
|
||||||
|
set_source_files_properties(${CHAT_EXE_RESOURCES} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
||||||
|
endif()
|
||||||
|
|
||||||
qt_target_qml_sources(chat
|
qt_add_executable(chat
|
||||||
|
src/main.cpp
|
||||||
|
src/chat.cpp src/chat.h
|
||||||
|
src/chatapi.cpp src/chatapi.h
|
||||||
|
src/chatlistmodel.cpp src/chatlistmodel.h
|
||||||
|
src/chatllm.cpp src/chatllm.h
|
||||||
|
src/chatmodel.h
|
||||||
|
src/chatviewtextprocessor.cpp src/chatviewtextprocessor.h
|
||||||
|
src/database.cpp src/database.h
|
||||||
|
src/download.cpp src/download.h
|
||||||
|
src/embllm.cpp src/embllm.h
|
||||||
|
src/llm.cpp src/llm.h
|
||||||
|
src/localdocs.cpp src/localdocs.h
|
||||||
|
src/localdocsmodel.cpp src/localdocsmodel.h
|
||||||
|
src/logger.cpp src/logger.h
|
||||||
|
src/modellist.cpp src/modellist.h
|
||||||
|
src/mysettings.cpp src/mysettings.h
|
||||||
|
src/network.cpp src/network.h
|
||||||
|
src/server.cpp src/server.h
|
||||||
|
${CHAT_EXE_RESOURCES}
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_add_qml_module(chat
|
||||||
|
URI gpt4all
|
||||||
|
VERSION 1.0
|
||||||
|
NO_CACHEGEN
|
||||||
|
QML_FILES
|
||||||
|
main.qml
|
||||||
|
qml/AddCollectionView.qml
|
||||||
|
qml/AddModelView.qml
|
||||||
|
qml/ApplicationSettings.qml
|
||||||
|
qml/ChatDrawer.qml
|
||||||
|
qml/ChatView.qml
|
||||||
|
qml/CollectionsDrawer.qml
|
||||||
|
qml/HomeView.qml
|
||||||
|
qml/LocalDocsSettings.qml
|
||||||
|
qml/LocalDocsView.qml
|
||||||
|
qml/ModelSettings.qml
|
||||||
|
qml/ModelsView.qml
|
||||||
|
qml/NetworkDialog.qml
|
||||||
|
qml/NewVersionDialog.qml
|
||||||
|
qml/PopupDialog.qml
|
||||||
|
qml/SettingsView.qml
|
||||||
|
qml/StartupDialog.qml
|
||||||
|
qml/SwitchModelDialog.qml
|
||||||
|
qml/Theme.qml
|
||||||
|
qml/ThumbsDownDialog.qml
|
||||||
|
qml/Toast.qml
|
||||||
|
qml/ToastManager.qml
|
||||||
|
qml/MyBusyIndicator.qml
|
||||||
|
qml/MyButton.qml
|
||||||
|
qml/MyCheckBox.qml
|
||||||
|
qml/MyComboBox.qml
|
||||||
|
qml/MyDialog.qml
|
||||||
|
qml/MyDirectoryField.qml
|
||||||
|
qml/MyFancyLink.qml
|
||||||
|
qml/MyMenu.qml
|
||||||
|
qml/MyMenuItem.qml
|
||||||
|
qml/MyMiniButton.qml
|
||||||
|
qml/MySettingsButton.qml
|
||||||
|
qml/MySettingsDestructiveButton.qml
|
||||||
|
qml/MySettingsLabel.qml
|
||||||
|
qml/MySettingsStack.qml
|
||||||
|
qml/MySettingsTab.qml
|
||||||
|
qml/MySlug.qml
|
||||||
|
qml/MyTextArea.qml
|
||||||
|
qml/MyTextButton.qml
|
||||||
|
qml/MyTextField.qml
|
||||||
|
qml/MyToolButton.qml
|
||||||
|
qml/MyWelcomeButton.qml
|
||||||
RESOURCES
|
RESOURCES
|
||||||
icons/antenna_1.svg
|
icons/antenna_1.svg
|
||||||
icons/antenna_2.svg
|
icons/antenna_2.svg
|
||||||
@ -223,7 +294,6 @@ if (APPLE)
|
|||||||
MACOSX_BUNDLE_GUI_IDENTIFIER gpt4all
|
MACOSX_BUNDLE_GUI_IDENTIFIER gpt4all
|
||||||
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
||||||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
||||||
RESOURCE "${CHAT_EXE_RESOURCES}"
|
|
||||||
OUTPUT_NAME gpt4all
|
OUTPUT_NAME gpt4all
|
||||||
)
|
)
|
||||||
add_dependencies(chat ggml-metal)
|
add_dependencies(chat ggml-metal)
|
||||||
|
@ -1,72 +0,0 @@
|
|||||||
set_source_files_properties("${GGML_METALLIB}" PROPERTIES GENERATED ON)
|
|
||||||
|
|
||||||
qt_add_executable(chat
|
|
||||||
main.cpp
|
|
||||||
chat.cpp chat.h
|
|
||||||
chatapi.cpp chatapi.h
|
|
||||||
chatlistmodel.cpp chatlistmodel.h
|
|
||||||
chatllm.cpp chatllm.h
|
|
||||||
chatmodel.h
|
|
||||||
chatviewtextprocessor.cpp chatviewtextprocessor.h
|
|
||||||
database.cpp database.h
|
|
||||||
download.cpp download.h
|
|
||||||
embllm.cpp embllm.h
|
|
||||||
llm.cpp llm.h
|
|
||||||
localdocs.cpp localdocs.h
|
|
||||||
localdocsmodel.cpp localdocsmodel.h
|
|
||||||
logger.cpp logger.h
|
|
||||||
modellist.cpp modellist.h
|
|
||||||
mysettings.cpp mysettings.h
|
|
||||||
network.cpp network.h
|
|
||||||
server.cpp server.h
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_add_qml_module(chat
|
|
||||||
URI gpt4all
|
|
||||||
VERSION 1.0
|
|
||||||
NO_CACHEGEN
|
|
||||||
QML_FILES
|
|
||||||
main.qml
|
|
||||||
qml/AddCollectionView.qml
|
|
||||||
qml/AddModelView.qml
|
|
||||||
qml/ApplicationSettings.qml
|
|
||||||
qml/ChatDrawer.qml
|
|
||||||
qml/ChatView.qml
|
|
||||||
qml/CollectionsDrawer.qml
|
|
||||||
qml/HomeView.qml
|
|
||||||
qml/LocalDocsSettings.qml
|
|
||||||
qml/LocalDocsView.qml
|
|
||||||
qml/ModelSettings.qml
|
|
||||||
qml/ModelsView.qml
|
|
||||||
qml/NetworkDialog.qml
|
|
||||||
qml/NewVersionDialog.qml
|
|
||||||
qml/PopupDialog.qml
|
|
||||||
qml/SettingsView.qml
|
|
||||||
qml/StartupDialog.qml
|
|
||||||
qml/SwitchModelDialog.qml
|
|
||||||
qml/Theme.qml
|
|
||||||
qml/ThumbsDownDialog.qml
|
|
||||||
qml/Toast.qml
|
|
||||||
qml/ToastManager.qml
|
|
||||||
qml/MyBusyIndicator.qml
|
|
||||||
qml/MyButton.qml
|
|
||||||
qml/MyCheckBox.qml
|
|
||||||
qml/MyComboBox.qml
|
|
||||||
qml/MyDialog.qml
|
|
||||||
qml/MyDirectoryField.qml
|
|
||||||
qml/MyFancyLink.qml
|
|
||||||
qml/MyMenu.qml
|
|
||||||
qml/MyMenuItem.qml
|
|
||||||
qml/MyMiniButton.qml
|
|
||||||
qml/MySettingsButton.qml
|
|
||||||
qml/MySettingsDestructiveButton.qml
|
|
||||||
qml/MySettingsLabel.qml
|
|
||||||
qml/MySettingsStack.qml
|
|
||||||
qml/MySettingsTab.qml
|
|
||||||
qml/MySlug.qml
|
|
||||||
qml/MyTextArea.qml
|
|
||||||
qml/MyTextButton.qml
|
|
||||||
qml/MyTextField.qml
|
|
||||||
qml/MyToolButton.qml
|
|
||||||
qml/MyWelcomeButton.qml
|
|
||||||
)
|
|
Loading…
Reference in New Issue
Block a user