forked from terminal29/PSMS-OSVR-Connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
33 lines (28 loc) · 1.5 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 2.8.12)
project(OSVRMove) # Change this line.
# This looks for an osvrConfig.cmake file - most of the time it can be
# autodetected but you might need to create/extend CMAKE_PREFIX_PATH to include something like
# C:/Users/Ryan/Desktop/build/OSVR-Core-vc12 or
# C:/Users/Ryan/Downloads/OSVR-Core-Snapshot-v0.1-406-gaa55515-build54-vs12-32bit
# in the CMake GUI or command line.
find_package(osvr REQUIRED)
# This generates a header file, from the named json file, containing a string literal
# named com_osvr_example_selfcontained_json (not null terminated)
# The file must be added as a source file to some target (as below) to be generated.
#osvr_convert_json(inf_osvr_move_json
# inf_osvr_move.json
# "${CMAKE_CURRENT_BINARY_DIR}/inf_osvr_move_json_json.h")
# Be able to find our generated header file.
#include_directories("${CMAKE_CURRENT_BINARY_DIR}")
# This is just a helper function wrapping CMake's add_library command that
# sets up include dirs, libraries, and naming convention (no leading "lib")
# for an OSVR plugin. It also installs the plugin into the right directory.
# Pass as many source files as you need. See osvrAddPlugin.cmake for full docs.
osvr_add_plugin(NAME inf_osvr_move
CPP # indicates we'd like to use the C++ wrapper
SOURCES
inf_osvr_move.cpp
# "${CMAKE_CURRENT_BINARY_DIR}/inf_osvr_move_json.h"
)
# If you use other libraries, find them and add a line like:
# target_link_libraries(inf_osvr_move AnyOtherLibraries)