mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-22 14:56:17 +00:00
Fixed build on Windows
This commit is contained in:
parent
ae82a61ca7
commit
4d18909386
1 changed files with 6 additions and 5 deletions
11
mkxp.pro
11
mkxp.pro
|
|
@ -101,18 +101,19 @@ unix {
|
||||||
win32 {
|
win32 {
|
||||||
QMAKE_CXXFLAGS += -std=gnu++11
|
QMAKE_CXXFLAGS += -std=gnu++11
|
||||||
QMAKE_LFLAGS += -std=gnu++11
|
QMAKE_LFLAGS += -std=gnu++11
|
||||||
PKGCONFIG += sigc++-2.0 pixman-1 zlib \
|
|
||||||
sdl2 SDL2_image SDL2_ttf openal SDL_sound vorbisfile freetype2
|
|
||||||
LIBS += -lphysfs -lboost_program_options-mt -lsecur32
|
|
||||||
|
|
||||||
STEAM {
|
STEAM {
|
||||||
equals(STEAMARCH, 64) {
|
equals(STEAMARCH, 64) {
|
||||||
LIBS += -l$$STEAMWORKS/redistributable_bin/win64/steam_api64.lib
|
LIBS += -L$$STEAMWORKS/redistributable_bin/win64 -lsteam_api64
|
||||||
} else {
|
} else {
|
||||||
LIBS += -l$$STEAMWORKS/redistributable_bin/steam_api.lib
|
LIBS += -L$$STEAMWORKS/redistributable_bin -lsteam_api
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PKGCONFIG += sigc++-2.0 pixman-1 zlib \
|
||||||
|
sdl2 SDL2_image SDL2_ttf openal SDL_sound vorbisfile freetype2
|
||||||
|
LIBS += -lphysfs -lboost_program_options-mt -lsecur32
|
||||||
|
|
||||||
# Deal with boost paths...
|
# Deal with boost paths...
|
||||||
isEmpty(BOOST_I) {
|
isEmpty(BOOST_I) {
|
||||||
BOOST_I = $$(BOOST_I)
|
BOOST_I = $$(BOOST_I)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue