blob: bdd8bc48361b3e0b39328ed74441214340625945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- cmake -*-
include(Prebuilt)
add_library( ll::glh_linear INTERFACE IMPORTED )
if (USESYSTEMLIBS)
target_include_directories( ll::glh_linear SYSTEM INTERFACE ${LIBS_PREBUILT_DIR}/include)
return ()
endif ()
use_system_binary( glh_linear )
use_prebuilt_binary(glh_linear)
|