mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 14:22:23 +02:00
remove antequated windows libraries that have been replaced by Qt usage
This commit is contained in:
parent
17df6484d4
commit
1f0a722d0d
6 changed files with 1 additions and 27 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue