forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kdstatemachineeditor] new port (microsoft#42664)
- Loading branch information
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
] | ||
} |