early-access version 2853
This commit is contained in:
32
externals/vcpkg/ports/qtopcua/portfile.cmake
vendored
Executable file
32
externals/vcpkg/ports/qtopcua/portfile.cmake
vendored
Executable file
@@ -0,0 +1,32 @@
|
||||
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
|
||||
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
|
||||
|
||||
# General features:
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
"open62541" FEATURE_open62541
|
||||
# "open62541" FEATURE_open62541_security # requires vendored open62541
|
||||
"uacpp" FEATURE_uacpp
|
||||
"ns0idnames" FEATURE_ns0idnames
|
||||
"ns0idgenerator" FEATURE_ns0idgenerator
|
||||
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Quick
|
||||
INVERTED_FEATURES
|
||||
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick
|
||||
)
|
||||
if("open62541" IN_LIST FEATURES)
|
||||
list(APPEND FEATURE_OPTIONS -DINPUT_open62541=system
|
||||
-DHAVE_open62541=true)
|
||||
else()
|
||||
list(APPEND FEATURE_OPTIONS -DINPUT_open62541=no)
|
||||
endif()
|
||||
|
||||
if(NOT "open62541" IN_LIST FEATURES AND NOT "gds" IN_LIST FEATURES)
|
||||
list(APPEND FEATURE_OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_WrapOpenSSL=ON)
|
||||
endif()
|
||||
|
||||
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
|
||||
CONFIGURE_OPTIONS
|
||||
${FEATURE_OPTIONS}
|
||||
CONFIGURE_OPTIONS_RELEASE
|
||||
CONFIGURE_OPTIONS_DEBUG
|
||||
)
|
||||
69
externals/vcpkg/ports/qtopcua/vcpkg.json
vendored
Executable file
69
externals/vcpkg/ports/qtopcua/vcpkg.json
vendored
Executable file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"name": "qtopcua",
|
||||
"version": "6.3.0",
|
||||
"description": "Qt wrapper for existing OPC UA stacks",
|
||||
"homepage": "https://www.qt.io/",
|
||||
"license": null,
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"network"
|
||||
]
|
||||
}
|
||||
],
|
||||
"default-features": [
|
||||
"default-features",
|
||||
"gds",
|
||||
"ns0idnames",
|
||||
"open62541"
|
||||
],
|
||||
"features": {
|
||||
"default-features": {
|
||||
"description": "Platform-dependent default features"
|
||||
},
|
||||
"gds": {
|
||||
"description": "Support for global discovery server"
|
||||
},
|
||||
"ns0idgenerator": {
|
||||
"description": "Namespace 0 NodeIds generator from the NodeIds.csv file."
|
||||
},
|
||||
"ns0idnames": {
|
||||
"description": "Support for namespace 0 NodeId names"
|
||||
},
|
||||
"open62541": {
|
||||
"description": "Open62541 with plugin to connect to servers with signing and encryption",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "open62541",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"amalgamation",
|
||||
"historizing",
|
||||
"openssl"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"qml": {
|
||||
"description": "Build QML imports",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"gui"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "qtdeclarative",
|
||||
"default-features": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"uacpp": {
|
||||
"description": "Unified Automation C++ SDK"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user