git: b891d897ddcd - main - devel/gflags: Remove CMAKE_TESTING_ON
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 07 Oct 2024 14:23:48 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=b891d897ddcd4f958c4c4a62fb90bf6ef4622110 commit b891d897ddcd4f958c4c4a62fb90bf6ef4622110 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-10-07 13:50:31 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-10-07 14:16:40 +0000 devel/gflags: Remove CMAKE_TESTING_ON - Cosmetic change CMAKE_TESTING_ON defaults to BUILD_TESTING. --- devel/gflags/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/devel/gflags/Makefile b/devel/gflags/Makefile index d210c39ccd3c..25a4d1472f1d 100644 --- a/devel/gflags/Makefile +++ b/devel/gflags/Makefile @@ -14,9 +14,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING.txt USES= cmake:testing compiler:c++11-lang pathfix shebangfix CMAKE_ARGS= -DGFLAGS_NAMESPACE:STRING=gflags -CMAKE_OFF= BUILD_TESTING REGISTER_INSTALL_PREFIX -CMAKE_ON= BUILD_SHARED_LIBS BUILD_STATIC_LIBS INSTALL_HEADERS INSTALL_SHARED_LIBS INSTALL_STATIC_LIBS -CMAKE_TESTING_ON= BUILD_TESTING +CMAKE_OFF= BUILD_TESTING \ + REGISTER_INSTALL_PREFIX +CMAKE_ON= BUILD_SHARED_LIBS \ + BUILD_STATIC_LIBS \ + INSTALL_HEADERS \ + INSTALL_SHARED_LIBS \ + INSTALL_STATIC_LIBS USE_CXXSTD= c++11 USE_LDCONFIG= yes