mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 15:52:35 +02:00
11 lines
242 B
CMake
11 lines
242 B
CMake
set(TARGET_NAME networking-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)
|
|
|