diff options
author | Forkk <forkk@forkk.net> | 2014-01-02 14:37:56 -0600 |
---|---|---|
committer | Forkk <forkk@forkk.net> | 2014-01-02 14:37:56 -0600 |
commit | 431cfbc60a255891e521c67509c84b97f08605f6 (patch) | |
tree | c455888ae410bc0bd9486bc51ed9f6bba0b0d47b /CMakeLists.txt | |
parent | 17f1864a71b69b9df14d8e06ed48a65e678d09c9 (diff) | |
download | MultiMC-431cfbc60a255891e521c67509c84b97f08605f6.tar MultiMC-431cfbc60a255891e521c67509c84b97f08605f6.tar.gz MultiMC-431cfbc60a255891e521c67509c84b97f08605f6.tar.lz MultiMC-431cfbc60a255891e521c67509c84b97f08605f6.tar.xz MultiMC-431cfbc60a255891e521c67509c84b97f08605f6.zip |
Implement the news button
Make the news button open the latest news post in the user's web
browser.
Also remove the webkit dependency. I was planning on using it to
display the news in a custom window, but we'll just use the user's
browser for now.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ccd513d..c026de4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -527,8 +527,8 @@ ADD_EXECUTABLE(MultiMC MACOSX_BUNDLE WIN32 main.cpp ${MULTIMC_RCS}) # Link TARGET_LINK_LIBRARIES(MultiMC MultiMC_common) TARGET_LINK_LIBRARIES(MultiMC_common xz-embedded unpack200 quazip libUtil libSettings libGroupView ${MultiMC_LINK_ADDITIONAL_LIBS}) -QT5_USE_MODULES(MultiMC Core Widgets Network Xml WebKit Concurrent ${MultiMC_QT_ADDITIONAL_MODULES}) -QT5_USE_MODULES(MultiMC_common Core Widgets Network Xml WebKit Concurrent ${MultiMC_QT_ADDITIONAL_MODULES}) +QT5_USE_MODULES(MultiMC Core Widgets Network Xml Concurrent ${MultiMC_QT_ADDITIONAL_MODULES}) +QT5_USE_MODULES(MultiMC_common Core Widgets Network Xml Concurrent ${MultiMC_QT_ADDITIONAL_MODULES}) ADD_DEPENDENCIES(MultiMC_common MultiMCLauncher JavaCheck) ################################ INSTALLATION AND PACKAGING ################################ |