File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,23 @@ option(NODESETLOADER_ENABLE_BUILD_INTO_OPEN62541 "make nodesetLoader part of the
1515option (NODESETLOADER_ENABLE_DATATYPEIMPORT_TEST "run tests for importing datatypes" off )
1616option (NODESETLOADER_CALC_COVERAGE "calculate code coverage" off )
1717
18+ # deprecated options without project prefix
19+ if (DEFINED ENABLE_BACKEND_STDOUT)
20+ message (WARNING "ENABLE_BACKEND_STDOUT is deprecated. Use NODESETLOADER_ENABLE_BACKEND_STDOUT instead." )
21+ set (NODESETLOADER_ENABLE_BACKEND_STDOUT ${ENABLE_BACKEND_STDOUT} CACHE BOOL "backend for stdout" FORCE)
22+ endif ()
23+ if (DEFINED ENABLE_BUILD_INTO_OPEN62541)
24+ message (WARNING "ENABLE_BUILD_INTO_OPEN62541 is deprecated. Use NODESETLOADER_ENABLE_BUILD_INTO_OPEN62541 instead." )
25+ set (NODESETLOADER_ENABLE_BUILD_INTO_OPEN62541 ${ENABLE_BUILD_INTO_OPEN62541} CACHE BOOL "make nodesetLoader part of the open62541 library" FORCE)
26+ endif ()
27+
1828# TODO: Include integration tests after support for XML Data
1929# Encoding has been added to the open62541 >= 1.3.2.
2030# Currently, the integration tests will fail for
2131# open62541 v1.3.2 and disable successful CI build.
2232set (NODESETLOADER_ENABLE_INTEGRATION_TEST off )
2333
2434if (${NODESETLOADER_ENABLE_BUILD_INTO_OPEN62541} )
25-
2635 # Disble code coverage, since this will be covered within open62541
2736 set (NODESETLOADER_CALC_COVERAGE off )
2837
You can’t perform that action at this time.
0 commit comments