mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7 lines
180 B
CMake
7 lines
180 B
CMake
function(add_import_library libname)
|
|
add_library(libname SHARED IMPORTED)
|
|
if(NOT TARGET libname)
|
|
message(FATAL "unable to find library ${libname}")
|
|
endif()
|
|
endfunction()
|