1382f33ae6
This PR contains the work done to: * Implemented a basic `Hummingbird` application in which to integrate the `HummingbirdDocC` library. * Added the *ArgumentParser* package dependency to the `Package.swift` file; * Added a new *sample* target to the `Package.swift` file; * Added library and documentation tasks to the `Makefile` file. Reviewed-on: #4 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
26 lines
972 B
Bash
26 lines
972 B
Bash
# ===----------------------------------------------------------------------===
|
|
#
|
|
# This source file is part of the Hummingbird DocC Middleware open source project
|
|
#
|
|
# Copyright (c) 2025 Röck+Cöde VoF. and the Hummingbird DocC Middleware project authors
|
|
# Licensed under the EUPL 1.2 or later.
|
|
#
|
|
# See LICENSE for license information
|
|
# See CONTRIBUTORS for the list of Hummingbird DocC Middleware project authors
|
|
#
|
|
# ===----------------------------------------------------------------------===
|
|
|
|
# --- DOCUMENTATION ---
|
|
|
|
DOCC_ARCHIVE_BASE_PATH=archives/${SPM_LIBRARY_TARGET}
|
|
DOCC_ARCHIVE_OUTPUT=./${SPM_LIBRARY_TARGET}.doccarchive
|
|
DOCC_ARCHIVE_REFERENCE=hummingbirddocc
|
|
DOCC_CONFIG_MINIMUM_ACCESS_LEVEL=public
|
|
DOCC_CONFIG_PREVIEW_URL=http://localhost:8080/documentation/${DOCC_ARCHIVE_REFERENCE}
|
|
DOCC_GITHUB_BASE_PATH=hummingbird-docc
|
|
DOCC_GITHUB_OUTPUT=./docs
|
|
|
|
# -- SWIFT PACKAGE MANAGER ---
|
|
|
|
SPM_LIBRARY_TARGET=HummingbirdDocC
|
|
SPM_SAMPLE_TARGET=HummingbirdDocCSample |