blob: ab7eb38862e7da267d4b1e2c86519437f8035821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- cmake -*-
include(Prebuilt)
include_guard()
create_target( ll::glod )
use_prebuilt_binary(glod)
set_target_include_dirs( ll::glod ${LIBS_PREBUILT_DIR}/include)
set_target_libraries( ll::glod GLOD )
target_compile_definitions( ll::glod INTERFACE LL_GLOD=1)
|