- Updated `.clangd` configuration to include additional include paths and feature flags tailored for ROM hacking workflows, optimizing IntelliSense support. - Introduced `.pre-commit-config.yaml` for managing code quality checks and formatting, ensuring consistent code style across the project. - Added `cmake-format.yaml` for CMake formatting configuration, promoting adherence to style guidelines. - Enhanced CI workflows to include new actions for testing and building, improving overall reliability and efficiency in the development process. Benefits: - Streamlines development setup and improves code quality through automated checks. - Facilitates better collaboration by ensuring consistent coding standards and configurations.
17 lines
522 B
CMake
17 lines
522 B
CMake
# Linux Packaging Configuration
|
|
|
|
# DEB package
|
|
set(CPACK_GENERATOR "DEB;TGZ")
|
|
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "scawful")
|
|
set(CPACK_DEBIAN_PACKAGE_SECTION "games")
|
|
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
|
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6, libstdc++6, libsdl2-2.0-0")
|
|
|
|
# RPM package
|
|
set(CPACK_RPM_PACKAGE_LICENSE "MIT")
|
|
set(CPACK_RPM_PACKAGE_GROUP "Applications/Games")
|
|
set(CPACK_RPM_PACKAGE_REQUIRES "glibc, libstdc++, SDL2")
|
|
|
|
# Tarball
|
|
set(CPACK_TGZ_PACKAGE_NAME "yaze-${CPACK_PACKAGE_VERSION}-linux-x64")
|