Skip to content

Commit

Permalink
refactor(core): Move architecture_definitions.h into config.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfr committed Jun 21, 2023
1 parent 6b90a71 commit 76bb7dc
Show file tree
Hide file tree
Showing 5 changed files with 414 additions and 431 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,6 @@ if(UA_ENABLE_HISTORIZING)
endif()

set(exported_headers ${PROJECT_BINARY_DIR}/src_generated/open62541/config.h
${PROJECT_SOURCE_DIR}/include/open62541/architecture_definitions.h
${exported_headers}
${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.h
${PROJECT_BINARY_DIR}/src_generated/open62541/nodeids.h
Expand Down
2 changes: 1 addition & 1 deletion arch/posix/ua_architecture.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef PLUGINS_ARCH_POSIX_UA_ARCHITECTURE_H_
#define PLUGINS_ARCH_POSIX_UA_ARCHITECTURE_H_

#include <open62541/architecture_definitions.h>
#include <open62541/config.h>

#include <errno.h>
#include <arpa/inet.h>
Expand Down
2 changes: 1 addition & 1 deletion arch/win32/ua_architecture.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# include <malloc.h>
#endif

#include <open62541/architecture_definitions.h>
#include <open62541/config.h>

#include <stdio.h>
#include <errno.h>
Expand Down
Loading

0 comments on commit 76bb7dc

Please sign in to comment.