Fix dummy values in gRPC message sent to RC xApp
[ric-app/ts.git] / src / ts_xapp / CMakeLists.txt
index 06ea5f2..47fd406 100644 (file)
 #==================================================================================
 #
 
+find_package(Protobuf REQUIRED)
+
 add_executable( ts_xapp ts_xapp.cpp )
-target_link_libraries( ts_xapp ricxfcpp;rmr_si;sdl;pthread )
+target_include_directories( ts_xapp PUBLIC ${srcd}/src ${srcd}/ext )
+target_link_libraries( ts_xapp
+                        ricxfcpp
+                        rmr_si
+                        pthread
+                        rc_objects
+                        grpc++
+                        ${Protobuf_LIBRARY}
+                        utils_objects
+                        curl
+)
 
-install( 
+install(
     TARGETS ts_xapp
     DESTINATION ${install_bin}
 )