11 lines
283 B
CMake
11 lines
283 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
include_guard()
|
|
add_library( ll::openjpeg INTERFACE IMPORTED )
|
|
|
|
use_prebuilt_binary(openjpeg)
|
|
|
|
target_link_libraries(ll::openjpeg INTERFACE openjpeg )
|
|
target_include_directories( ll::openjpeg SYSTEM INTERFACE ${LIBS_PREBUILT_DIR}/include/openjpeg)
|