mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-26 01:30:55 +08:00
[kdstatemachineeditor] new port (#42664)
This commit is contained in:
parent
76527256e8
commit
ef6588394c
43
ports/kdstatemachineeditor/portfile.cmake
Normal file
43
ports/kdstatemachineeditor/portfile.cmake
Normal file
@ -0,0 +1,43 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO KDAB/KDStateMachineEditor
|
||||
REF v${VERSION}
|
||||
SHA512 dedd7166f434689cd5acf4ee3172169d3f77182269d3187f0a7a12966467dd5c7733e3ff64cd1fd03b0f3866c2aafa37cc3f2d7b8a3f4a5d8a7592da039de7af
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" VCPKG_BUILD_SHARED_LIBS)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
-DKDSME_QT6=ON
|
||||
-DKDSME_INTERNAL_GRAPHVIZ=OFF
|
||||
-DKDSME_DOCS=OFF
|
||||
-DKDSME_EXAMPLES=OFF
|
||||
-DBUILD_TESTING=OFF
|
||||
-DBUILD_SHARED_LIBS=${VCPKG_BUILD_SHARED_LIBS}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_copy_pdbs()
|
||||
vcpkg_cmake_config_fixup(PACKAGE_NAME KDSME-qt6 CONFIG_PATH lib/cmake/KDSME-qt6)
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/doc")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
vcpkg_install_copyright(
|
||||
FILE_LIST
|
||||
"${SOURCE_PATH}/LICENSE.txt"
|
||||
"${SOURCE_PATH}/LICENSES/BSD-3-Clause.txt"
|
||||
"${SOURCE_PATH}/LICENSES/GPL-3.0-or-later.txt"
|
||||
"${SOURCE_PATH}/LICENSES/LicenseRef-CISST.txt"
|
||||
"${SOURCE_PATH}/LICENSES/LicenseRef-Qt-Commercial.txt"
|
||||
"${SOURCE_PATH}/LICENSES/GPL-3.0-only.txt"
|
||||
"${SOURCE_PATH}/LICENSES/LGPL-2.1-only.txt"
|
||||
"${SOURCE_PATH}/LICENSES/LicenseRef-KDAB-KDStateMachineEditor.txt"
|
||||
"${SOURCE_PATH}/LICENSES/MIT.txt"
|
||||
)
|
||||
|
||||
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
11
ports/kdstatemachineeditor/usage
Normal file
11
ports/kdstatemachineeditor/usage
Normal file
@ -0,0 +1,11 @@
|
||||
kdstatemachineeditor provides CMake targets:
|
||||
|
||||
find_package(KDSME-qt6 CONFIG REQUIRED)
|
||||
# Core library
|
||||
target_link_libraries(main PRIVATE KDSME::Core)
|
||||
# View library
|
||||
target_link_libraries(main PRIVATE KDSME::View)
|
||||
# Debug interface client library
|
||||
target_link_libraries(main PRIVATE KDSME::DebugInterfaceClient)
|
||||
# Debug interface server library
|
||||
target_link_libraries(main PRIVATE KDSME::DebugInterfaceSource)
|
30
ports/kdstatemachineeditor/vcpkg.json
Normal file
30
ports/kdstatemachineeditor/vcpkg.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "kdstatemachineeditor",
|
||||
"version": "2.0.0",
|
||||
"description": "KDStateMachineEditor is a library for visualizing and editing state charts.",
|
||||
"homepage": "https://github.com/KDAB/KDStateMachineEditor",
|
||||
"license": "LGPL-2.1-only",
|
||||
"dependencies": [
|
||||
"graphviz",
|
||||
"qt5compat",
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"testlib",
|
||||
"widgets"
|
||||
]
|
||||
},
|
||||
"qtdeclarative",
|
||||
"qtremoteobjects",
|
||||
"qtscxml",
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
@ -3956,6 +3956,10 @@
|
||||
"baseline": "2.2.0",
|
||||
"port-version": 1
|
||||
},
|
||||
"kdstatemachineeditor": {
|
||||
"baseline": "2.0.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"kealib": {
|
||||
"baseline": "1.6.0",
|
||||
"port-version": 0
|
||||
|
9
versions/k-/kdstatemachineeditor.json
Normal file
9
versions/k-/kdstatemachineeditor.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "698e2dfa9c5950117cc66ad7a800d692d8c9a99e",
|
||||
"version": "2.0.0",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user