mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-13 15:59:11 +02:00
14 lines
No EOL
431 B
CMake
14 lines
No EOL
431 B
CMake
set(TARGET_NAME networking)
|
|
|
|
# use setup_hifi_library macro to setup our project and link appropriate Qt modules
|
|
setup_hifi_library(Network)
|
|
|
|
link_hifi_libraries(shared)
|
|
|
|
if (WIN32)
|
|
# we need ws2_32.lib on windows, but it's static so we don't bubble it up
|
|
target_link_libraries(${TARGET_NAME} ws2_32.lib)
|
|
endif ()
|
|
|
|
# call macro to link our dependencies and bubble them up via a property on our target
|
|
link_shared_dependencies() |