Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « driver_sample « samples - github.com/ValveSoftware/openvr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b1908c97fd6cef32ac1c36925a963ded2217321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
set(TARGET_NAME driver_sample)

add_library(${TARGET_NAME} SHARED
  driverlog.cpp
  driverlog.h
  driver_sample.cpp
)

add_definitions(-DDRIVER_SAMPLE_EXPORTS)

target_link_libraries(${TARGET_NAME}
  ${OPENVR_LIBRARIES}
  ${CMAKE_DL_LIBS}
)

setTargetOutputDirectory(${TARGET_NAME})