diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 181421b..2549fd8 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -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", diff --git a/build-base/Dockerfile.dropshell-build-base b/build-base/Dockerfile.dropshell-build-base index 7a52f41..d3c5cb3 100644 --- a/build-base/Dockerfile.dropshell-build-base +++ b/build-base/Dockerfile.dropshell-build-base @@ -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 \ No newline at end of file diff --git a/tests/cprdemo/src/autogen/version.hpp b/tests/cprdemo/src/autogen/version.hpp new file mode 100644 index 0000000..a016b3e --- /dev/null +++ b/tests/cprdemo/src/autogen/version.hpp @@ -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 + +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 \ No newline at end of file