blob: e5ec962f4cf5cbdce034e6573713e6520c04c5c2 (
plain)
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
|
# -*- cmake -*-
include(Prebuilt)
set(NDOF ON CACHE BOOL "Use NDOF space navigator joystick library.")
if ( TARGET ndof::ndof )
return()
endif()
create_target( ndof::ndof )
if (NDOF)
if (WINDOWS OR DARWIN)
use_prebuilt_binary(libndofdev)
elseif (LINUX)
use_prebuilt_binary(open-libndofdev)
endif (WINDOWS OR DARWIN)
if (WINDOWS)
set_target_libraries( ndof::ndof libndofdev)
elseif (DARWIN OR LINUX)
set_target_libraries( ndof::ndof ndofdev)
endif (WINDOWS)
target_compile_definitions( ndof::ndof INTERFACE LIB_NDOF=1)
endif (NDOF)
if (NOT NDOF_FOUND)
message(STATUS "Building without N-DoF joystick support")
endif ()
|