mirror of
https://github.com/lubosz/overte.git
synced 2025-08-29 09:06:46 +02:00
10 lines
218 B
CMake
10 lines
218 B
CMake
set(TARGET_NAME octree-tests)
|
|
|
|
setup_hifi_project(${TARGET_NAME})
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(${TARGET_NAME} octree)
|
|
|
|
IF (WIN32)
|
|
target_link_libraries(${TARGET_NAME} wsock32.lib)
|
|
ENDIF(WIN32)
|