Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[kdstatemachineeditor] new port #42664

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": 0
},
"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
}
]
}