blob: d0992f57b8217ef3eb12a8908705eb7995a5e768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- cmake -*-
include(Prebuilt)
set(GLH_FIND_REQUIRED TRUE)
set(GLH_FIND_QUIETLY TRUE)
if (USESYSTEMLIBS)
include(FindGLH)
else (USESYSTEMLIBS)
use_prebuilt_binary(glh-linear)
endif (USESYSTEMLIBS)
|