From: Matt Keeter Date: Fri, 21 Mar 2014 21:27:09 +0000 (-0400) Subject: Beginning to make cross-platform X-Git-Tag: v0.9.0~8^2~3 X-Git-Url: https://git.sur5r.net/?p=fstl;a=commitdiff_plain;h=e67c0435557d48b79e05fca9d71cf75de4ef3b43;hp=2692ba4d0e192b4c481b89b2f180b2b924853720 Beginning to make cross-platform --- diff --git a/exe/fstl.ico b/exe/fstl.ico new file mode 100644 index 0000000..2e2d891 Binary files /dev/null and b/exe/fstl.ico differ diff --git a/exe/fstl.rc b/exe/fstl.rc new file mode 100644 index 0000000..3620f29 --- /dev/null +++ b/exe/fstl.rc @@ -0,0 +1 @@ +IDI_ICON1 ICON DISCARDABLE "fstl.ico" diff --git a/qt/fstl.pro b/qt/fstl.pro index 950c376..cec8000 100644 --- a/qt/fstl.pro +++ b/qt/fstl.pro @@ -32,6 +32,11 @@ RESOURCES += \ qt.qrc \ ../gl/gl.qrc -QMAKE_INFO_PLIST = ../app/Info.plist - -ICON = ../app/fstl.icns +macx { + QMAKE_INFO_PLIST = ../app/Info.plist + ICON = ../app/fstl.icns +} + +win32 { + RC_FILE = ../exe/fstl.rc +}