We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HOST=gimp is hardcoded in several places, patching those to gimp3 allows it to work with gimp 2.99/3.0
HOST=gimp
gimp3
--- a/src/Makefile +++ b/src/Makefile @@ -577,11 +577,11 @@ # G'MIC-Qt. #---------- gimp: gmic_qt_files CImg.h gmic_stdlib_community.h - cd ../gmic-qt && $(QMAKE) CONFIG+=release GMIC_PATH=$(SRC_PATH) PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=off HOST=gimp gmic_qt.pro && $(MAKE) + cd ../gmic-qt && $(QMAKE) CONFIG+=release GMIC_PATH=$(SRC_PATH) PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=off HOST=gimp3 gmic_qt.pro && $(MAKE) @echo "Executable 'gmic_gimp_qt' has been successfully compiled in '../gmic-qt/'." gimp_debug : gmic_qt_files CImg.h gmic_stdlib_community.h - cd ../gmic-qt && $(QMAKE) CONFIG+=debug GMIC_PATH=$(SRC_PATH) ASAN=on PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=off HOST=gimp gmic_qt.pro && $(MAKE) + cd ../gmic-qt && $(QMAKE) CONFIG+=debug GMIC_PATH=$(SRC_PATH) ASAN=on PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=off HOST=gimp3 gmic_qt.pro && $(MAKE) @echo "Executable 'gmic_gimp_qt' has been successfully compiled in '../gmic-qt/'." gmic_qt: gmic_qt_files CImg.h gmic_stdlib_community.h @@ -619,7 +619,7 @@ # G'MIC-Qt (shared). #------------------- gimp_shared: gmic_qt_files CImg.h gmic_stdlib_community.h - cd ../gmic-qt && $(QMAKE) CONFIG+=release GMIC_PATH=$(SRC_PATH) PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=on HOST=gimp gmic_qt.pro && $(MAKE) + cd ../gmic-qt && $(QMAKE) CONFIG+=release GMIC_PATH=$(SRC_PATH) PRERELEASE=$(PRERELEASE) GMIC_DYNAMIC_LINKING=on HOST=gimp3 gmic_qt.pro && $(MAKE) @echo "Executable 'gmic_gimp_qt' has been successfully compiled in '../gmic-qt/'." gmic_qt_shared: gmic_qt_files CImg.h gmic_stdlib_community.h
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HOST=gimp
is hardcoded in several places, patching those togimp3
allows it to work with gimp 2.99/3.0The text was updated successfully, but these errors were encountered: