f45b9e7423
CMake 3.22.2 * VS: Remove the '/guard:cf' flag from v143 link flag table * FortranCInterface: Fix compatibility with GCC gfortran 12 LTO * FindBoost: Add support for Boost 1.78 * ci: Explicitly disable Java tests on Windows * FindGLUT: Provide legacy GLUT_INCLUDE_DIR result in pkg-config code path * FindBoost: Do not warn about now-supported version 1.78 * ci: Explicitly disable Java tests on VS builds * file: Restore error capture in undocumented READ_ELF mode * MSVC: Use -external:I flag without space to support Clang tools * Help: Add missing 3.22.1 section to the release notes * gitlab-ci: update macOS jobs to use Xcode 13.2 * ASM: Fix identification of armasm 6.17+ * FindBoost: Add support for Python 3.10 * XL: Detect default extensions mode for legacy compiler * CMP0128: Prefix test names with mode * CMP0128: Avoid test code duplication * CMP0128: Add flag in OLD mode even when standard matches the default * Android: Fix linking android_support for pre-21 system STL * FindPython: Add support for Python 3.11 * VS: Fix detecting icx.exe with Intel Compiler toolsets newer than 2021
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2022/01/25 21:18:09 adam Exp $
|
|
|
|
.include "../../devel/cmake/Makefile.common"
|
|
|
|
PKGNAME= cmake-gui-${CMAKE_VERSION}
|
|
|
|
COMMENT= CMake GUI
|
|
|
|
USE_CMAKE= yes
|
|
BUILD_DIRS= Source/QtDialog
|
|
CMAKE_ARGS+= -DBUILD_TESTING=OFF
|
|
CMAKE_ARGS+= -DBUILD_QtDialog=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_LIBARCHIVE=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_CURL=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_EXPAT=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_FORM=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_JSONCPP=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_LIBRHASH=ON
|
|
CMAKE_ARGS+= -DCMAKE_USE_SYSTEM_LIBUV=ON
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/bin && ${LN} -f -s ${CMAKE} cmake
|
|
|
|
BUILDLINK_API_DEPENDS.libarchive+= libarchive>=3.3.3
|
|
.include "../../archivers/libarchive/buildlink3.mk"
|
|
.include "../../devel/libexecinfo/buildlink3.mk"
|
|
.include "../../devel/libuv/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../misc/rhash/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../textproc/jsoncpp/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../x11/qt5-qtbase/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|