This is an initial pass, simply moving the existing logic as-is. Future PR's will attempt to refactor and improve the cmake stuff.
11 lines
216 B
CMake
11 lines
216 B
CMake
macro(SetupSpaceball)
|
|
# ------------------------------ Spaceball -------------------------------
|
|
|
|
if (WIN32)
|
|
#future
|
|
else(WIN32)
|
|
find_package(Spnav)
|
|
endif(WIN32)
|
|
|
|
endmacro(SetupSpaceball)
|