Skip to content

Commit

Permalink
Bump open62541 to version 1.4.4 (#44)
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Roubert <joakimr@axis.com>
  • Loading branch information
joakimr-axis authored Jan 20, 2025
1 parent a61a372 commit 1e01f8c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG SDK_IMAGE=axisecp/acap-native-sdk
ARG DEBUG_WRITE
ARG BUILD_DIR=/opt/build
ARG ACAP_BUILD_DIR="$BUILD_DIR"/app
ARG OPEN62541_VERSION=1.2.9
ARG OPEN62541_VERSION=1.4.4
ARG OPENCV_VERSION=4.5.5

FROM $SDK_IMAGE:$SDK_VERSION-$ARCH AS builder
Expand Down Expand Up @@ -107,11 +107,12 @@ WORKDIR "$OPEN62541_BUILD_DIR"
RUN . /opt/axis/acapsdk/environment-setup* && \
cmake \
-DCMAKE_INSTALL_PREFIX="$SDKTARGETSYSROOT"/usr \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_BUILD_EXAMPLES=OFF \
-DBUILD_SHARED_LIBS=ON \
-DUA_ENABLE_NODEMANAGEMENT=ON \
"$OPEN62541_SRC_DIR"
RUN make -j install
RUN make -j "$(nproc)" install

# Copy the built library files to application directory
WORKDIR "$ACAP_BUILD_DIR"/lib
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"embeddedSdkVersion": "3.0",
"vendorUrl": "https://www.axis.com/",
"runMode": "respawn",
"version": "2.0.0"
"version": "2.0.1"
},
"configuration": {
"settingPage": "settings.html",
Expand Down
4 changes: 3 additions & 1 deletion src/opcuaserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
* limitations under the License.
*/

#include "opcuaserver.hpp"
#include <assert.h>

#include "common.hpp"
#include "opcuaserver.hpp"

using namespace std;

Expand Down

0 comments on commit 1e01f8c

Please sign in to comment.