|
@@ -1,21 +1,17 @@
|
|
|
cmake_minimum_required(VERSION 2.8.11)
|
|
|
project(open62541 C)
|
|
|
+set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/tools/cmake")
|
|
|
# set(CMAKE_VERBOSE_MAKEFILE ON)
|
|
|
|
|
|
######################
|
|
|
# Check Dependencies #
|
|
|
######################
|
|
|
|
|
|
-# Find Python
|
|
|
find_package(PythonInterp REQUIRED)
|
|
|
-
|
|
|
-# Check for git
|
|
|
find_package(Git)
|
|
|
if(GIT_FOUND)
|
|
|
execute_process(COMMAND ${GIT_EXECUTABLE} describe --abbrev=7 --dirty --always --tags
|
|
|
- RESULT_VARIABLE res_var
|
|
|
- OUTPUT_VARIABLE GIT_COM_ID
|
|
|
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
|
|
+ RESULT_VARIABLE res_var OUTPUT_VARIABLE GIT_COM_ID WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
|
|
if(NOT ${res_var} EQUAL 0)
|
|
|
set(GIT_COMMIT_ID "unknown--git-commit-id-unknown")
|
|
|
message(STATUS "Git failed (not a repo, or no tags). Build will not contain git revision info." )
|
|
@@ -26,81 +22,18 @@ else()
|
|
|
set(GIT_COMMIT_ID "unknown--no-git-found")
|
|
|
message(STATUS "Git not found. Build will not contain git revision info." )
|
|
|
endif()
|
|
|
-
|
|
|
message(STATUS "Git version: " ${GIT_COMMIT_ID})
|
|
|
|
|
|
-set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/tools/cmake")
|
|
|
-
|
|
|
-####################################
|
|
|
-# Build Type and Compiler Settings #
|
|
|
-####################################
|
|
|
+############
|
|
|
+# Settings #
|
|
|
+############
|
|
|
|
|
|
# Set default build type.
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
- message(STATUS "CMAKE_BUILD_TYPE not given; setting to 'Debug'.")
|
|
|
- set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build." FORCE)
|
|
|
+ message(STATUS "CMAKE_BUILD_TYPE not given; setting to 'Debug'")
|
|
|
+ set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build" FORCE)
|
|
|
endif()
|
|
|
|
|
|
-# Collect libraries
|
|
|
-list(APPEND open62541_LIBRARIES "")
|
|
|
-
|
|
|
-# compiler flags
|
|
|
-if(CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xClang")
|
|
|
- add_definitions(-std=c99 -pipe -Wall -Wextra -Werror -Wformat -Wno-unused-parameter
|
|
|
- -Wno-unused-function -Wno-unused-label -Wpointer-arith -Wreturn-type -Wsign-compare
|
|
|
- -Wmultichar -Wstrict-overflow -Wcast-qual -Wmissing-prototypes -Wstrict-prototypes
|
|
|
- -Winit-self -Wuninitialized -Wformat-security -Wformat-nonliteral)
|
|
|
-
|
|
|
- # library linking
|
|
|
- set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # cmake sets -rdynamic by default
|
|
|
- if(NOT WIN32 AND NOT CYGWIN)
|
|
|
- add_definitions(-Wshadow -Wconversion -fvisibility=hidden -fPIC)
|
|
|
- if(NOT APPLE)
|
|
|
- set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none")
|
|
|
- endif()
|
|
|
- endif()
|
|
|
-
|
|
|
- # Debug
|
|
|
- if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
- # add_definitions(-fsanitize=address)
|
|
|
- # list(APPEND open62541_LIBRARIES asan)
|
|
|
-
|
|
|
- # add_definitions(-fsanitize=undefined)
|
|
|
- # list(APPEND open62541_LIBRARIES ubsan)
|
|
|
-
|
|
|
- elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" OR
|
|
|
- CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
- add_definitions(-ffunction-sections -fdata-sections -fno-stack-protector -fno-unwind-tables
|
|
|
- -fno-asynchronous-unwind-tables -fno-math-errno -fmerge-all-constants -fno-ident)
|
|
|
- set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -s")
|
|
|
- set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -s")
|
|
|
- if(APPLE)
|
|
|
- set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-dead_strip")
|
|
|
- set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-dead_strip")
|
|
|
- else()
|
|
|
- set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,--gc-sections")
|
|
|
- set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections")
|
|
|
- if(NOT WIN32 AND NOT CYGWIN)
|
|
|
- # these settings reduce the binary size by ~2kb
|
|
|
- set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none")
|
|
|
- endif()
|
|
|
- endif()
|
|
|
- endif()
|
|
|
-
|
|
|
- if(APPLE)
|
|
|
- set(CMAKE_MACOSX_RPATH 1)
|
|
|
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DARWIN_C_SOURCE=1")
|
|
|
- endif()
|
|
|
-elseif(MSVC)
|
|
|
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3 /WX") # Compiler warnings, error on warning
|
|
|
- set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
|
|
|
- set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
|
|
|
-endif()
|
|
|
-
|
|
|
-############
|
|
|
-# Settings #
|
|
|
-############
|
|
|
-
|
|
|
# Options
|
|
|
set(UA_LOGLEVEL 300 CACHE STRING "Level at which logs shall be reported")
|
|
|
option(UA_ENABLE_METHODCALLS "Enable the Method service set" ON)
|
|
@@ -139,23 +72,80 @@ if(UA_ENABLE_NONSTANDARD_UDP)
|
|
|
endif()
|
|
|
|
|
|
# Build Targets
|
|
|
-option(UA_BUILD_EXAMPLESERVER "Build the example server" OFF)
|
|
|
-option(UA_BUILD_EXAMPLECLIENT "Build a test client" OFF)
|
|
|
-option(UA_BUILD_UNIT_TESTS "Run unit tests after building" OFF)
|
|
|
option(UA_BUILD_EXAMPLES "Build example servers and clients" OFF)
|
|
|
+option(UA_BUILD_EXAMPLES_NODESET_COMPILER "Generate an OPC UA information model from a nodeset XML (experimental)" OFF)
|
|
|
+option(UA_BUILD_UNIT_TESTS "Build the unit tests" OFF)
|
|
|
option(UA_BUILD_DOCUMENTATION "Generate doxygen/sphinx documentation" OFF)
|
|
|
|
|
|
# Advanced Build Targets
|
|
|
option(UA_BUILD_SELFSIGNED_CERTIFICATE "Generate self-signed certificate" OFF)
|
|
|
mark_as_advanced(UA_BUILD_SELFSIGNED_CERTIFICATE)
|
|
|
|
|
|
+#####################
|
|
|
+# Compiler Settings #
|
|
|
+#####################
|
|
|
+
|
|
|
+list(APPEND open62541_LIBRARIES "") # Collect libraries
|
|
|
+
|
|
|
+if(CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xClang")
|
|
|
+ # Compiler
|
|
|
+ add_definitions(-std=c99 -pipe -Wall -Wextra -Werror -Wformat -Wno-unused-parameter
|
|
|
+ -Wno-unused-function -Wno-unused-label -Wpointer-arith -Wreturn-type -Wsign-compare
|
|
|
+ -Wmultichar -Wstrict-overflow -Wcast-qual -Wmissing-prototypes -Wstrict-prototypes
|
|
|
+ -Winit-self -Wuninitialized -Wformat-security -Wformat-nonliteral)
|
|
|
+ if(NOT WIN32 AND NOT CYGWIN)
|
|
|
+ add_definitions(-Wshadow -Wconversion -fvisibility=hidden -fPIC)
|
|
|
+ endif()
|
|
|
+
|
|
|
+ # Linker
|
|
|
+ set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # cmake sets -rdynamic by default
|
|
|
+
|
|
|
+ # Debug
|
|
|
+ if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
+ # add_definitions(-fsanitize=address)
|
|
|
+ # list(APPEND open62541_LIBRARIES asan)
|
|
|
+ # add_definitions(-fsanitize=undefined)
|
|
|
+ # list(APPEND open62541_LIBRARIES ubsan)
|
|
|
+ endif()
|
|
|
+
|
|
|
+ # Strip release builds
|
|
|
+ if(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" OR CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
+ add_definitions(-ffunction-sections -fdata-sections -fno-stack-protector -fno-unwind-tables
|
|
|
+ -fno-asynchronous-unwind-tables -fno-math-errno -fmerge-all-constants -fno-ident)
|
|
|
+ set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -s")
|
|
|
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -s")
|
|
|
+ if(APPLE)
|
|
|
+ set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-dead_strip")
|
|
|
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-dead_strip")
|
|
|
+ else()
|
|
|
+ set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,--gc-sections")
|
|
|
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections")
|
|
|
+ endif()
|
|
|
+ if(NOT WIN32 AND NOT CYGWIN AND NOT APPLE)
|
|
|
+ # these settings reduce the binary size by ~2kb
|
|
|
+ set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none")
|
|
|
+ endif()
|
|
|
+ endif()
|
|
|
+endif()
|
|
|
+
|
|
|
+if(APPLE)
|
|
|
+ set(CMAKE_MACOSX_RPATH 1)
|
|
|
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DARWIN_C_SOURCE=1")
|
|
|
+endif()
|
|
|
+
|
|
|
+if(MSVC)
|
|
|
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3 /WX") # Compiler warnings, error on warning
|
|
|
+ set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
|
|
|
+ set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
|
|
|
+endif()
|
|
|
+
|
|
|
#########################
|
|
|
# Generate Main Library #
|
|
|
#########################
|
|
|
|
|
|
file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/src_generated")
|
|
|
-include_directories(${PROJECT_BINARY_DIR}/src_generated) #needed to locate an include of examples/server_nodeset.c
|
|
|
configure_file("include/ua_config.h.in" "${PROJECT_BINARY_DIR}/src_generated/ua_config.h")
|
|
|
+include_directories(${PROJECT_BINARY_DIR}/src_generated)
|
|
|
|
|
|
set(exported_headers ${PROJECT_BINARY_DIR}/src_generated/ua_config.h
|
|
|
${PROJECT_SOURCE_DIR}/include/ua_constants.h
|
|
@@ -251,10 +241,9 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_types_generated
|
|
|
${PROJECT_BINARY_DIR}/src_generated/ua_types_generated_encoding_binary.h
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/generate_datatypes.py
|
|
|
- --typedescriptions ${PROJECT_SOURCE_DIR}/tools/schema/NodeIds.csv
|
|
|
- --selected_types=${PROJECT_SOURCE_DIR}/tools/schema/datatypes_minimal.txt
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/ua_types
|
|
|
+ --typedescriptions ${PROJECT_SOURCE_DIR}/tools/schema/NodeIds.csv
|
|
|
+ --selected_types=${PROJECT_SOURCE_DIR}/tools/schema/datatypes_minimal.txt
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd ${PROJECT_BINARY_DIR}/src_generated/ua_types
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/generate_datatypes.py
|
|
|
${PROJECT_SOURCE_DIR}/tools/schema/datatypes_minimal.txt
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd
|
|
@@ -266,11 +255,10 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_transport_gener
|
|
|
${PROJECT_BINARY_DIR}/src_generated/ua_transport_generated_encoding_binary.h
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/generate_datatypes.py
|
|
|
- --namespace=1
|
|
|
- --selected_types=${PROJECT_SOURCE_DIR}/tools/schema/datatypes_transport.txt
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/Custom.Opc.Ua.Transport.bsd
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/ua_transport
|
|
|
+ --namespace=1 --selected_types=${PROJECT_SOURCE_DIR}/tools/schema/datatypes_transport.txt
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/Custom.Opc.Ua.Transport.bsd
|
|
|
+ ${PROJECT_BINARY_DIR}/src_generated/ua_transport
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/generate_datatypes.py
|
|
|
${PROJECT_SOURCE_DIR}/tools/schema/datatypes_transport.txt
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools/schema/Custom.Opc.Ua.Transport.bsd)
|
|
@@ -279,8 +267,7 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_transport_gener
|
|
|
add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_nodeids.h
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/generate_nodeids.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/NodeIds.csv
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/ua_nodeids
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/NodeIds.csv ${PROJECT_BINARY_DIR}/src_generated/ua_nodeids
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/generate_nodeids.py
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools/schema/NodeIds.csv)
|
|
|
|
|
@@ -289,10 +276,10 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_namespaceinit_g
|
|
|
${PROJECT_BINARY_DIR}/src_generated/ua_namespaceinit_generated.h
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
- -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_AssumeExternal.txt
|
|
|
- -s description -b ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist.txt
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/${GENERATE_NAMESPACE0_FILE}
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/ua_namespaceinit_generated
|
|
|
+ -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_AssumeExternal.txt
|
|
|
+ -s description -b ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist.txt
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/${GENERATE_NAMESPACE0_FILE}
|
|
|
+ ${PROJECT_BINARY_DIR}/src_generated/ua_namespaceinit_generated
|
|
|
DEPENDS ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/${GENERATE_NAMESPACE0_FILE}
|
|
|
${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
${PROJECT_SOURCE_DIR}/tools/pyUANamespace/open62541_MacroHelper.py
|
|
@@ -305,8 +292,7 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/ua_namespaceinit_g
|
|
|
add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/open62541.h
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
|
|
|
- ${GIT_COMMIT_ID}
|
|
|
- ${CMAKE_CURRENT_BINARY_DIR}/open62541.h ${exported_headers}
|
|
|
+ ${GIT_COMMIT_ID} ${CMAKE_CURRENT_BINARY_DIR}/open62541.h ${exported_headers}
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
|
|
|
${exported_headers}
|
|
|
${internal_headers})
|
|
@@ -314,191 +300,79 @@ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/open62541.h
|
|
|
add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/open62541.c
|
|
|
PRE_BUILD
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
|
|
|
- ${GIT_COMMIT_ID}
|
|
|
- ${CMAKE_CURRENT_BINARY_DIR}/open62541.c
|
|
|
- ${internal_headers}
|
|
|
- ${PROJECT_SOURCE_DIR}/src/server/ua_nodestore_hash.inc
|
|
|
- ${lib_sources}
|
|
|
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
|
|
|
- ${internal_headers}
|
|
|
- ${PROJECT_SOURCE_DIR}/src/server/ua_nodestore_hash.inc
|
|
|
- ${lib_sources})
|
|
|
-
|
|
|
-#################
|
|
|
-# Build Targets #
|
|
|
-#################
|
|
|
+ ${GIT_COMMIT_ID} ${CMAKE_CURRENT_BINARY_DIR}/open62541.c ${internal_headers}
|
|
|
+ ${PROJECT_SOURCE_DIR}/src/server/ua_nodestore_hash.inc ${lib_sources}
|
|
|
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py ${internal_headers}
|
|
|
+ ${PROJECT_SOURCE_DIR}/src/server/ua_nodestore_hash.inc ${lib_sources})
|
|
|
+
|
|
|
+# example information model from nodeset xml
|
|
|
+add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/nodeset.h ${PROJECT_BINARY_DIR}/src_generated/nodeset.c
|
|
|
+ PRE_BUILD
|
|
|
+ COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
+ -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/Opc.Ua.NodeSet2.xml
|
|
|
+ ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml
|
|
|
+ ${PROJECT_BINARY_DIR}/src_generated/nodeset
|
|
|
+ DEPENDS ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/open62541_MacroHelper.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_builtin_types.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_constants.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_namespace.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_node_types.py
|
|
|
+ ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
|
|
|
+ ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml)
|
|
|
+
|
|
|
+#####################
|
|
|
+# Build the Library #
|
|
|
+#####################
|
|
|
|
|
|
-# build shared library
|
|
|
if(UA_ENABLE_AMALGAMATION)
|
|
|
add_library(open62541-object OBJECT ${PROJECT_BINARY_DIR}/open62541.c ${PROJECT_BINARY_DIR}/open62541.h)
|
|
|
- include_directories(${PROJECT_BINARY_DIR})
|
|
|
+ target_include_directories(open62541-object PRIVATE ${PROJECT_BINARY_DIR})
|
|
|
else()
|
|
|
- add_definitions(-DUA_NO_AMALGAMATION)
|
|
|
add_library(open62541-object OBJECT ${lib_sources} ${internal_headers} ${exported_headers})
|
|
|
- include_directories(${PROJECT_SOURCE_DIR}/include)
|
|
|
- include_directories(${PROJECT_SOURCE_DIR}/src)
|
|
|
- include_directories(${PROJECT_SOURCE_DIR}/plugins)
|
|
|
- include_directories(${PROJECT_SOURCE_DIR}/deps)
|
|
|
+ target_include_directories(open62541-object PRIVATE ${PROJECT_SOURCE_DIR}/include ${PROJECT_SOURCE_DIR}/src
|
|
|
+ ${PROJECT_SOURCE_DIR}/plugins ${PROJECT_SOURCE_DIR}/deps)
|
|
|
endif()
|
|
|
+add_library(open62541 $<TARGET_OBJECTS:open62541-object>)
|
|
|
+target_link_libraries(open62541 ${open62541_LIBRARIES})
|
|
|
+
|
|
|
target_compile_definitions(open62541-object PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
-add_library(open62541 SHARED $<TARGET_OBJECTS:open62541-object>)
|
|
|
-add_library(open62541-static STATIC $<TARGET_OBJECTS:open62541-object>)
|
|
|
target_compile_definitions(open62541 PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
-target_compile_definitions(open62541-static PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
-target_link_libraries(open62541-static ${open62541_LIBRARIES})
|
|
|
-if(WIN32)
|
|
|
- target_link_libraries(open62541 ws2_32)
|
|
|
- target_link_libraries(open62541-static ws2_32)
|
|
|
-endif()
|
|
|
+# target_compile_definitions(open62541-static PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
|
|
|
-if(UA_BUILD_EXAMPLESERVER)
|
|
|
- set(server_source $<TARGET_OBJECTS:open62541-object>)
|
|
|
- add_executable(server_static examples/server.c ${server_source})
|
|
|
- add_executable(server examples/server.c)
|
|
|
- target_link_libraries(server ${open62541_LIBRARIES} open62541)
|
|
|
- target_link_libraries(server_static ${open62541_LIBRARIES})
|
|
|
- target_compile_definitions(server_static PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
- if(WIN32)
|
|
|
- target_link_libraries(server_static ws2_32)
|
|
|
- target_link_libraries(server ws2_32)
|
|
|
- elseif(NOT APPLE)
|
|
|
- target_link_libraries(server_static rt)
|
|
|
- target_link_libraries(server rt)
|
|
|
- endif()
|
|
|
- if(UA_ENABLE_MULTITHREADING)
|
|
|
- target_link_libraries(server_static urcu-cds urcu urcu-common pthread)
|
|
|
- target_link_libraries(server urcu-cds urcu urcu-common pthread)
|
|
|
- endif()
|
|
|
-
|
|
|
- if(UA_ENABLE_NONSTANDARD_UDP)
|
|
|
- add_executable(exampleServerUDP $<TARGET_OBJECTS:open62541-object>
|
|
|
- examples/networklayer_udp.c
|
|
|
- examples/server_udp.c)
|
|
|
- target_link_libraries(exampleServerUDP ${open62541_LIBRARIES} open62541)
|
|
|
- if(UA_ENABLE_MULTITHREADING)
|
|
|
- target_link_libraries(exampleServerUDP urcu-cds urcu urcu-common)
|
|
|
- endif()
|
|
|
- if (NOT APPLE)
|
|
|
- target_link_libraries(exampleServerUDP rt)
|
|
|
- endif()
|
|
|
- endif()
|
|
|
+if(WIN32)
|
|
|
+ target_link_libraries(open62541 ws2_32)
|
|
|
endif()
|
|
|
|
|
|
-if(UA_BUILD_SELFSIGNED_CERTIFICATE)
|
|
|
- message(STATUS "Enabling self-signed certificates")
|
|
|
- find_package(OpenSSL REQUIRED)
|
|
|
- add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/server_cert.der
|
|
|
- ${PROJECT_BINARY_DIR}/ca.crt
|
|
|
- COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/certs/create_self-signed.py ${PROJECT_BINARY_DIR}
|
|
|
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/certs/create_self-signed.py
|
|
|
- ${CMAKE_CURRENT_SOURCE_DIR}/tools/certs/localhost.cnf)
|
|
|
- add_custom_target(selfsigned ALL DEPENDS ${PROJECT_BINARY_DIR}/server_cert.der ${PROJECT_BINARY_DIR}/ca.crt)
|
|
|
-endif()
|
|
|
+##########################
|
|
|
+# Build Selected Targets #
|
|
|
+##########################
|
|
|
|
|
|
-if(UA_BUILD_EXAMPLECLIENT)
|
|
|
- set(client_source $<TARGET_OBJECTS:open62541-object>)
|
|
|
- add_executable(client_static examples/client.c ${client_source})
|
|
|
- add_executable(client examples/client.c)
|
|
|
- target_link_libraries(client_static ${open62541_LIBRARIES})
|
|
|
- target_compile_definitions(client_static PRIVATE -DUA_DYNAMIC_LINKING)
|
|
|
- target_link_libraries(client open62541 ${open62541_LIBRARIES})
|
|
|
- if(WIN32)
|
|
|
- target_link_libraries(client_static ws2_32)
|
|
|
- target_link_libraries(client ws2_32)
|
|
|
- elseif(NOT APPLE)
|
|
|
- target_link_libraries(client_static rt)
|
|
|
- target_link_libraries(client rt)
|
|
|
- endif()
|
|
|
- if(UA_ENABLE_MULTITHREADING)
|
|
|
- target_link_libraries(client_static urcu-cds urcu urcu-common pthread)
|
|
|
- target_link_libraries(client urcu-cds urcu urcu-common pthread)
|
|
|
- endif()
|
|
|
+if(UA_BUILD_EXAMPLES)
|
|
|
+ add_subdirectory(examples)
|
|
|
endif()
|
|
|
|
|
|
if(UA_BUILD_UNIT_TESTS)
|
|
|
- add_definitions(-DUA_BUILD_UNIT_TESTS)
|
|
|
+ target_compile_definitions(open62541-object PRIVATE UA_BUILD_UNIT_TESTS) # Export some internal functions
|
|
|
enable_testing()
|
|
|
add_subdirectory(tests)
|
|
|
endif()
|
|
|
|
|
|
-if(UA_BUILD_EXAMPLES)
|
|
|
- #add_subdirectory(examples)
|
|
|
- #FIXME: we had problem with static linking for msvs, here a quick and dirty workaround
|
|
|
- #http://stackoverflow.com/questions/3704374/linking-error-lnk2019-in-msvc-unresolved-symbols-with-imp-prefix-but-shoul
|
|
|
- #http://stackoverflow.com/questions/1089828/same-header-file-for-both-dll-and-static-library
|
|
|
- list(APPEND LIBS ${open62541_LIBRARIES})
|
|
|
- if(NOT WIN32)
|
|
|
- list(APPEND LIBS pthread)
|
|
|
- if (NOT APPLE)
|
|
|
- list(APPEND LIBS rt)
|
|
|
- endif()
|
|
|
- else()
|
|
|
- list(APPEND LIBS ws2_32)
|
|
|
- endif()
|
|
|
- if(UA_ENABLE_MULTITHREADING)
|
|
|
- list(APPEND LIBS urcu-cds urcu urcu-common)
|
|
|
- endif(UA_ENABLE_MULTITHREADING)
|
|
|
-
|
|
|
- add_executable(server_variable ${PROJECT_SOURCE_DIR}/examples/server_variable.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_variable ${LIBS})
|
|
|
-
|
|
|
- add_executable(server_mainloop ${PROJECT_SOURCE_DIR}/examples/server_mainloop.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_mainloop ${LIBS})
|
|
|
-
|
|
|
- add_executable(server_datasource ${PROJECT_SOURCE_DIR}/examples/server_datasource.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_datasource ${LIBS})
|
|
|
-
|
|
|
- # add_executable(server_readspeed ${PROJECT_SOURCE_DIR}/examples/server_readspeed.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- # target_link_libraries(server_readspeed ${LIBS})
|
|
|
-
|
|
|
- add_executable(server_firstSteps ${PROJECT_SOURCE_DIR}/examples/server_firstSteps.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_firstSteps ${LIBS})
|
|
|
-
|
|
|
- add_executable(client_firstSteps ${PROJECT_SOURCE_DIR}/examples/client_firstSteps.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(client_firstSteps ${LIBS})
|
|
|
-
|
|
|
- add_executable(server_repeated_job ${PROJECT_SOURCE_DIR}/examples/server_repeated_job.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_repeated_job ${LIBS})
|
|
|
-
|
|
|
- if(UA_ENABLE_DISCOVERY)
|
|
|
- add_executable(discovery_server_discovery ${PROJECT_SOURCE_DIR}/examples/discovery/server_discovery.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(discovery_server_discovery ${LIBS})
|
|
|
-
|
|
|
- # can currently only be build on linux, because windows is missing pthread support
|
|
|
- add_executable(discovery_server_register ${PROJECT_SOURCE_DIR}/examples/discovery/server_register.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(discovery_server_register ${LIBS})
|
|
|
-
|
|
|
- add_executable(discovery_client_find_servers ${PROJECT_SOURCE_DIR}/examples/discovery/client_find_servers.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(discovery_client_find_servers ${LIBS})
|
|
|
- endif()
|
|
|
+if(UA_BUILD_DOCUMENTATION)
|
|
|
+ add_subdirectory(doc)
|
|
|
+endif()
|
|
|
|
|
|
- add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/nodeset.h ${PROJECT_BINARY_DIR}/src_generated/nodeset.c
|
|
|
- PRE_BUILD
|
|
|
- COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
- -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/Opc.Ua.NodeSet2.xml
|
|
|
- ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/nodeset
|
|
|
- DEPENDS ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/open62541_MacroHelper.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_builtin_types.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_constants.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_namespace.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_node_types.py
|
|
|
- ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
|
|
|
- ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml)
|
|
|
-
|
|
|
- add_executable(server_nodeset ${PROJECT_SOURCE_DIR}/examples/server_nodeset.c
|
|
|
- ${PROJECT_BINARY_DIR}/src_generated/nodeset.c
|
|
|
- $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_nodeset ${LIBS})
|
|
|
-
|
|
|
- if(UA_ENABLE_METHODCALLS)
|
|
|
- add_executable(server_method ${PROJECT_SOURCE_DIR}/examples/server_method.c $<TARGET_OBJECTS:open62541-object>)
|
|
|
- target_link_libraries(server_method ${LIBS})
|
|
|
- endif()
|
|
|
+if(UA_BUILD_SELFSIGNED_CERTIFICATE)
|
|
|
+ find_package(OpenSSL REQUIRED)
|
|
|
+ add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/server_cert.der ${PROJECT_BINARY_DIR}/ca.crt
|
|
|
+ COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/certs/create_self-signed.py ${PROJECT_BINARY_DIR}
|
|
|
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/certs/create_self-signed.py
|
|
|
+ ${CMAKE_CURRENT_SOURCE_DIR}/tools/certs/localhost.cnf)
|
|
|
+ add_custom_target(selfsigned ALL DEPENDS ${PROJECT_BINARY_DIR}/server_cert.der ${PROJECT_BINARY_DIR}/ca.crt)
|
|
|
endif()
|
|
|
|
|
|
-if(UA_BUILD_DOCUMENTATION)
|
|
|
- add_subdirectory(doc)
|
|
|
+if(UA_BUILD_EXAMPLES_NODESET_COMPILER)
|
|
|
+ add_custom_target(generate_informationmodel ALL
|
|
|
+ DEPENDS ${PROJECT_BINARY_DIR}/src_generated/nodeset.h ${PROJECT_BINARY_DIR}/src_generated/nodeset.c)
|
|
|
endif()
|