You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#find_package(glog REQUIRED)
#list(APPEND third_party_libraries glog::glog)
set(GLOG_ROOT_DIR ${LIB_BASE_DIR}/glog-src)
find_package(glog REQUIRED CONFIG HINTS ${GLOG_ROOT_DIR})
set(GLOG_INCLUDE_DIR ${GLOG_ROOT_DIR}/include)
# glog::glog is imported target
list(APPEND third_party_libraries glog::glog)
|