mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
10 lines
386 B
CMake
10 lines
386 B
CMake
find_path(QRENCODE_INCLUDE_DIR qrencode.h)
|
|
message(STATUS "QRENCODE PATH ${QRENCODE_INCLUDE_DIR}")
|
|
|
|
find_library(QRENCODE_LIBRARY qrencode)
|
|
message(STATUS "QRENCODE LIBRARY ${QRENCODE_LIBRARY}")
|
|
|
|
mark_as_advanced(QRENCODE_LIBRARY QRENCODE_INCLUDE_DIR)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(QREncode DEFAULT_MSG QRENCODE_LIBRARY QRENCODE_INCLUDE_DIR)
|