remove antequated windows libraries that have been replaced by Qt usage

This commit is contained in:
Stephen Birarda 2014-08-08 10:17:29 -07:00
parent 17df6484d4
commit 1f0a722d0d
6 changed files with 1 additions and 27 deletions

View file

@ -14,9 +14,5 @@ if (UNIX)
target_link_libraries(${TARGET_NAME} ${DEPENDENCY_LIBRARIES} ${CMAKE_DL_LIBS})
endif (UNIX)
IF (WIN32)
target_link_libraries(${TARGET_NAME} ${DEPENDENCY_LIBRARIES} Winmm Ws2_32)
ENDIF(WIN32)
find_package(Qt5 COMPONENTS Gui Network Script Widgets)
target_link_libraries(${TARGET_NAME} Qt5::Gui Qt5::Network Qt5::Script Qt5::Widgets)

View file

@ -14,9 +14,5 @@ add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
# link the shared hifi library
link_hifi_libraries(${TARGET_NAME} embedded-webserver networking shared)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)
find_package(Qt5 COMPONENTS Network Widgets)
target_link_libraries(${TARGET_NAME} Qt5::Network)

View file

@ -7,8 +7,3 @@ include_glm(${TARGET_NAME} ${ROOT_DIR})
# link in the shared libraries
link_hifi_libraries(${TARGET_NAME} shared audio networking)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)

View file

@ -3,9 +3,4 @@ set(TARGET_NAME jitter-tests)
setup_hifi_project(${TARGET_NAME} TRUE)
# link in the shared libraries
link_hifi_libraries(${TARGET_NAME} shared networking)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)
link_hifi_libraries(${TARGET_NAME} shared networking)

View file

@ -9,9 +9,5 @@ setup_hifi_project(${TARGET_NAME} TRUE "${AUTOMTC_SRC}")
# link in the shared libraries
link_hifi_libraries(${TARGET_NAME} metavoxels networking shared)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)
target_link_libraries(${TARGET_NAME} Qt5::Network Qt5::Widgets Qt5::Script)

View file

@ -5,7 +5,3 @@ setup_hifi_project(${TARGET_NAME} TRUE)
# link in the shared libraries
link_hifi_libraries(${TARGET_NAME} shared networking)
IF (WIN32)
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
ENDIF(WIN32)