blob: 1a33644e9ec7c34e3d846fc6207df4841652c1fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- cmake -*-
include(Prebuilt)
if( TARGET glod::glod )
return()
endif()
create_target( glod::glod )
use_prebuilt_binary(glod)
set(GLODLIB ON CACHE BOOL "Using GLOD library")
set_target_include_dirs( glod::glod ${LIBS_PREBUILT_DIR}/include)
set_target_libraries( glod::glod GLOD )
|