-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to qt5 and drop qt4 support (#4)
- Loading branch information
Showing
9 changed files
with
65 additions
and
45 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 @@ | ||
.git |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
build | ||
install-win32 | ||
packages |
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
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,26 @@ | ||
FROM fedora:latest | ||
|
||
RUN dnf install -y \ | ||
make \ | ||
mingw64-bzip2-static \ | ||
mingw64-freetype-static \ | ||
mingw64-gcc-c++ \ | ||
mingw64-pcre2-static \ | ||
mingw64-qt5-qmake \ | ||
mingw64-qt5-qtbase-devel \ | ||
mingw64-qt5-qtbase-static \ | ||
mingw64-qt5-qtbase-static \ | ||
mingw64-win-iconv-static \ | ||
&& dnf clean all | ||
|
||
COPY . /work | ||
WORKDIR /work | ||
RUN mkdir -p build-win32 \ | ||
&& mkdir -p install-win32/bin | ||
RUN cd build-win32 \ | ||
&& mingw64-qmake-qt5 ../ypspur_gui.pro \ | ||
&& make release LFLAGS="-static -mwindows" \ | ||
&& cp ./release/ypspur-gui.exe ../install-win32/bin/ \ | ||
&& make clean | ||
|
||
RUN mingw-objdump -p install-win32/bin/ypspur-gui.exe | grep dll |
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
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
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
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
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