X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ntsimulator%2Fdeploy%2Fbase%2Fbuild_ntsim-ng.sh;h=fe7a367125f17e78a6c322f12a586be950aaa340;hb=6d03d77e2110c880c63c8716385d2b936ccc4b78;hp=dbabaabc47d2bb8ade51fd5567154656002c54cb;hpb=f1d5c9198acde7a7ce296490087cad37e008f688;p=sim%2Fo1-interface.git diff --git a/ntsimulator/deploy/base/build_ntsim-ng.sh b/ntsimulator/deploy/base/build_ntsim-ng.sh index dbabaab..fe7a367 100755 --- a/ntsimulator/deploy/base/build_ntsim-ng.sh +++ b/ntsimulator/deploy/base/build_ntsim-ng.sh @@ -18,18 +18,25 @@ # ***************************************************************************/ files=( + "core/container.c" "core/context.c" "core/docker.c" "core/framework.c" "core/test.c" "core/session.c" "core/nc_config.c" + "core/app/supervisor.c" + "core/app/app_common.c" "core/app/manager.c" + "core/app/manager_context.c" "core/app/manager_operations.c" + "core/app/manager_actions.c" + "core/app/manager_sysrepo.c" "core/app/network_function.c" + "core/app/blank.c" "core/datastore/schema.c" + "core/datastore/generate.c" "core/datastore/populate.c" - "core/datastore/populate_rec.c" "core/faults/faults.c" "core/faults/faults_counters.c" "core/faults/faults_processing.c" @@ -45,8 +52,9 @@ files=( "features/ves_pnf_registration/ves_pnf_registration.c" "features/ves_heartbeat/ves_heartbeat.c" "features/ves_file_ready/ves_file_ready.c" - "features/netconf_call_home/netconf_call_home.c" "features/manual_notification/manual_notification.c" + "features/netconf_call_home/netconf_call_home.c" + "features/web_cut_through/web_cut_through.c" "main.c" ) @@ -76,6 +84,9 @@ done output="ntsim-ng" build="gcc -Wall -pedantic -Isource $sources $libraries -o$output" +if [[ -n "${BUILD_WITH_DEBUG}" ]]; then + build="gcc -g -Wall -pedantic -Isource $sources $libraries -o$output" +fi echo "Building with command: $build" $build