From 3c4249e78557d175634329cc1e27acca97158c6d Mon Sep 17 00:00:00 2001 From: Georges Berenger Date: Fri, 9 Feb 2024 18:47:01 -0800 Subject: [PATCH] Fix OSS build (#144) Summary: Pull Request resolved: https://github.com/facebookresearch/vrs/pull/144 The OSS cmake builds are missing a dependency... Reviewed By: finik Differential Revision: D53634774 fbshipit-source-id: ec4ab88d2901fa63ce1703498a04511b895ed066 --- sample_apps/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/sample_apps/CMakeLists.txt b/sample_apps/CMakeLists.txt index 1d6d3f65..e4ef427e 100644 --- a/sample_apps/CMakeLists.txt +++ b/sample_apps/CMakeLists.txt @@ -18,6 +18,7 @@ target_link_libraries(sample_playback_app vrslib vrs_logging vrs_os + vrs_utils ) add_executable(sample_recording_app "SampleRecordingApp.cpp")