7 Star 6 Fork 1

LinRaise/Log4cplus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Log4CPlusUtils.cmake 715 Bytes
一键复制 编辑 原始数据 按行查看 历史
#
# Utility macros for Log4Cplus project
#
# Get Log4cplus version macro
# first param - path to include folder, we will rip version from version.h
macro(log4cplus_get_version _include_PATH vmajor vminor vpatch)
file(STRINGS "${_include_PATH}/log4cplus/version.h" _log4cplus_VER_STRING_AUX REGEX ".*#define[ ]+LOG4CPLUS_VERSION[ ]+")
string(REGEX MATCHALL "[0-9]+" _log4clpus_VER_LIST "${_log4cplus_VER_STRING_AUX}")
list(LENGTH _log4clpus_VER_LIST _log4cplus_VER_LIST_LEN)
# we also count '4' from the name...
if(_log4cplus_VER_LIST_LEN EQUAL 5)
list(GET _log4clpus_VER_LIST 2 ${vmajor})
list(GET _log4clpus_VER_LIST 3 ${vminor})
list(GET _log4clpus_VER_LIST 4 ${vpatch})
endif()
endmacro()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/LinRaise/Log4cplus.git
[email protected]:LinRaise/Log4cplus.git
LinRaise
Log4cplus
Log4cplus
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385