From bdb3df55565505dd745f821e7aef63c8a31c7890 Mon Sep 17 00:00:00 2001 From: John Spray Date: Tue, 17 Apr 2018 11:28:04 +0100 Subject: [PATCH] cmake: include frontend build in 'all' target The frontend wasn't getting included in a default build since it was removed as a dependency of ceph-mgr and made a dependency of vstart instead. Signed-off-by: John Spray --- src/pybind/mgr/dashboard/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pybind/mgr/dashboard/CMakeLists.txt b/src/pybind/mgr/dashboard/CMakeLists.txt index 99bf35d6bef0e..f2b67dd8c4c7e 100644 --- a/src/pybind/mgr/dashboard/CMakeLists.txt +++ b/src/pybind/mgr/dashboard/CMakeLists.txt @@ -71,6 +71,7 @@ add_custom_command( COMMENT "dashboard frontend is being created" ) add_custom_target(mgr-dashboard-frontend-build + ALL DEPENDS frontend/dist mgr-dashboard-frontend-deps WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/src/pybind/mgr/dashboard/frontend ) -- 2.39.5