# License: Apache 2.0. See LICENSE file in root directory. # Copyright(c) 2019 Intel Corporation. All Rights Reserved. target_sources(${LRS_TARGET} PRIVATE "${CMAKE_CURRENT_LIST_DIR}/tm-boot.h" "${CMAKE_CURRENT_LIST_DIR}/tm-device.h" "${CMAKE_CURRENT_LIST_DIR}/tm-info.h" "${CMAKE_CURRENT_LIST_DIR}/tm-device.cpp" "${CMAKE_CURRENT_LIST_DIR}/tm-info.cpp" "${CMAKE_CURRENT_LIST_DIR}/t265-messages.h" ) # TM2 is FW-less device, i.e. it receives its FW each time the device’s power is turned on. # Therefore it is dependent on FW library that is created only when IMPORT_DEPTH_CAM_FW is on if(NOT IMPORT_DEPTH_CAM_FW) message(SEND_ERROR "BUILD_WITH_TM2 requires IMPORT_DEPTH_CAM_FW") endif() target_link_libraries(${LRS_TARGET} PRIVATE fw) # for T265 FW target_include_directories(${LRS_TARGET} PUBLIC $) set_target_properties (${LRS_TARGET} PROPERTIES FOLDER Resources)