mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 19:02:36 +02:00
Now builds on windows with actual Neuron SDK. Can to TCP server on localhost, and receive joint data. Will debug draw joint 6, (left foot?)
14 lines
520 B
CMake
14 lines
520 B
CMake
#
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
# Created by Anthony J. Thibault on 2015/12/21
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(TARGET_NEURON)
|
|
add_dependency_external_projects(neuron)
|
|
find_package(Neuron REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${NEURON_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${NEURON_LIBRARIES})
|
|
add_definitions(-DHAVE_NEURON)
|
|
endmacro()
|