config: Update 2 files
All checks were successful
dropshell-build multiarch / build (linux/amd64) (push) Successful in 37s
dropshell-build multiarch / build (linux/arm64) (push) Successful in 53s
dropshell-build multiarch / create-manifest (push) Successful in 12s

This commit is contained in:
Your Name
2025-06-29 22:52:24 +12:00
parent 570c8186ac
commit 3b7e3a6f54
3 changed files with 28 additions and 5 deletions

View File

@ -7,13 +7,10 @@
"${workspaceFolder}/tests/ipdemo/src",
"${workspaceFolder}/tests/ipdemo/src/autogen",
"${workspaceFolder}/tests/cprdemo/src",
"${workspaceFolder}/tests/cprdemo/src/autogen",
"/usr/local/include",
"/usr/include",
"/usr/include/x86_64-linux-gnu",
"/usr/local/include/drogon",
"/usr/local/include/trantor",
"/opt/local/include",
"/opt/include"
"/usr/include/x86_64-linux-gnu"
],
"defines": [
"DROGON_HEADERS_MISSING",

View File

@ -345,3 +345,8 @@ EOF
# Install upx
COPY opt /opt
RUN /opt/install_upx.sh
# add in packages required for a gitea runner
RUN apk add --no-cache \
nodejs npm

View File

@ -0,0 +1,21 @@
#pragma once
/*
version.hpp is automatically generated by the build system, from version.hpp.in.
DO NOT EDIT VERSION.HPP!
*/
#include <string>
namespace cprdemo {
// Version information
const std::string VERSION = "@PROJECT_VERSION@";
const std::string RELEASE_DATE = "@RELEASE_DATE@";
const std::string AUTHOR = "j842";
const std::string LICENSE = "MIT";
} // namespace dropshell