Skip to content

Commit

Permalink
[kdstatemachineeditor] new port (microsoft#42664)
Browse files Browse the repository at this point in the history
  • Loading branch information
drdanz authored Dec 17, 2024
1 parent 7652725 commit ef65883
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 0 deletions.
43 changes: 43 additions & 0 deletions ports/kdstatemachineeditor/portfile.cmake
Original file line number Diff line number Diff line change
@@ -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 changes: 11 additions & 0 deletions ports/kdstatemachineeditor/usage
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions ports/kdstatemachineeditor/vcpkg.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions versions/k-/kdstatemachineeditor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "698e2dfa9c5950117cc66ad7a800d692d8c9a99e",
"version": "2.0.0",
"port-version": 0
}
]
}

0 comments on commit ef65883

Please sign in to comment.