-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update cmake package info - remove deprecated gitlab-ci file - move Dockerfile into devcontainer folder
- Loading branch information
Showing
7 changed files
with
24 additions
and
32 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,15 @@ | ||
FROM fedora:36 | ||
|
||
RUN dnf -y update | ||
|
||
# Toolchain | ||
RUN dnf -y install \ | ||
git \ | ||
gcc-c++ \ | ||
make \ | ||
cmake \ | ||
doxygen \ | ||
graphviz \ | ||
python3-pip \ | ||
rpmdevtools \ | ||
libxml2-devel |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,16 @@ | ||
set(CPACK_PACKAGE_NAME "libcimpp_${USE_CIM_VERSION}") | ||
set(CPACK_PACKAGE_VENDOR "Institute for Automation of Complex Power Systems, RWTH Aachen University") | ||
set(CPACK_PACKAGE_CONTACT "Lukas Razik <[email protected]>") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CIM++ is deserialiser library for C++ objects from XML/RDF documents based on CIM standards") | ||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "libcimpp is a serialiser & deserialiser library for C++ objects from XML/RDF documents based on CIM standards") | ||
set(CPACK_PACKAGE_VERSION_MAJOR ${libcimpp_MAJOR_VERSION}) | ||
set(CPACK_PACKAGE_VERSION_MINOR ${libcimpp_MINOR_VERSION}) | ||
set(CPACK_PACKAGE_VERSION_PATCH ${libcimpp_PATCH_VERSION}) | ||
|
||
set(CPACK_DEBIAN_PACKAGE_SECTION "devel") | ||
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/sogno-platform/libcimpp") | ||
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://sogno.energy/libcimpp/" ) | ||
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "amd64") | ||
|
||
set(CPACK_RPM_PACKAGE_LICENSE "Apache-2.0") | ||
set(CPACK_RPM_PACKAGE_URL "https://github.com/sogno-platform/libcimpp") | ||
set(CPACK_RPM_PACKAGE_URL "https://sogno.energy/libcimpp/") | ||
set(CPACK_RPM_PACKAGE_GROUP "Development/Libraries") | ||
|
||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") | ||
|
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