Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
Issue ##12864: Fix Windows build (from Vitaly).
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Feb 5, 2015
1 parent 595fb0e commit 8e8546b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/phantomjs.pro
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ RESOURCES = phantomjs.qrc \
qt/qtwebkit/Source/WebCore/inspector/front-end/WebKit.qrc \
qt/qtwebkit/Source/WebCore/generated/InspectorBackendCommands.qrc

# Include resources for Windows only. Linux and OS X already have them.
# for more info see file: src\qt\qtwebkit\Source\WebCore\Target.pri:17
!winrt:win32: {
RESOURCES += qt/qtwebkit/Source/WebCore/inspector/front-end/WebKit.qrc \
qt/qtwebkit/Source/WebCore/generated/InspectorBackendCommands.qrc
}

!winrt:!win32: {
QTPLUGIN += qphantom
}
Expand Down

2 comments on commit 8e8546b

@flipperbw
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines 15 and 16 have to be removed

@billschaller
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ariya @vitallium Please port this to master...

Please sign in to comment.