mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 01:31:37 +02:00
17 lines
436 B
CMake
17 lines
436 B
CMake
set(TARGET_NAME metavoxel-tests)
|
|
|
|
find_package(Qt5 COMPONENTS Network Script Widgets)
|
|
|
|
auto_mtc(${TARGET_NAME} "${ROOT_DIR}")
|
|
|
|
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)
|
|
|