CMakeLists.txt: stop using add_backward and qt5_use_modules

(the former adds libraries multiple times, the latter is deprecated)
install-platforms
Julius Michaelis 2017-09-23 16:52:33 +02:00
parent 1541bf62c1
commit 3eb6dcbcd3
1 changed files with 3 additions and 3 deletions

View File

@ -1186,11 +1186,11 @@ if(NOT HEADLESS_ONLY)
if(WITH_QT_EDITOR) if(WITH_QT_EDITOR)
set_target_properties(openclonk PROPERTIES COMPILE_DEFINITIONS WITH_QT_EDITOR) set_target_properties(openclonk PROPERTIES COMPILE_DEFINITIONS WITH_QT_EDITOR)
qt5_use_modules(openclonk Widgets) target_link_libraries(openclonk Qt5::Widgets)
endif() endif()
if(HAVE_BACKWARD) if(HAVE_BACKWARD)
add_backward(openclonk) target_link_libraries(openclonk Backward::Backward)
endif() endif()
endif() endif()
@ -1224,7 +1224,7 @@ if(USE_COCOA)
target_link_libraries(openclonk-server "-framework Cocoa") target_link_libraries(openclonk-server "-framework Cocoa")
endif() endif()
if(HAVE_BACKWARD) if(HAVE_BACKWARD)
add_backward(openclonk-server) target_link_libraries(openclonk-server Backward::Backward)
endif() endif()
if(GTK3_FOUND AND GTK3_gtksourceview_FOUND AND NOT HEADLESS_ONLY) if(GTK3_FOUND AND GTK3_gtksourceview_FOUND AND NOT HEADLESS_ONLY)