File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ INCLUDE(CheckPIESupported)
1414CHECK_PIE_SUPPORTED()
1515SET (CMAKE_POSITION_INDEPENDENT_CODE ON )
1616
17- OPTION (BRINGAUTO_TESTS "Enable tests" OFF )
18- OPTION (BRINGAUTO_PACKAGE "Package creation" OFF )
19- OPTION (BRINGAUTO_INSTALL "Enable install" OFF )
20- OPTION (BRINGAUTO_SYSTEM_DEP "Enable system dependencies" OFF )
21- OPTION (BRINGAUTO_SAMPLES "Enable build of sample app, not used in project" OFF )
17+ OPTION (BRINGAUTO_TESTS "Enable tests" OFF )
18+ OPTION (BRINGAUTO_PACKAGE "Package creation" OFF )
19+ OPTION (BRINGAUTO_INSTALL "Enable install" OFF )
20+ OPTION (BRINGAUTO_SYSTEM_DEP "Enable system dependencies" OFF )
21+ OPTION (BRINGAUTO_SAMPLES "Enable build of sample app, not used in project" OFF )
22+ OPTION (BRINGAUTO_INSTALL_IMPORTED_DEPS "Enable installation of imported deps" OFF )
2223
2324IF (BRINGAUTO_PACKAGE)
2425 IF (NOT BRINGAUTO_INSTALL)
@@ -76,7 +77,9 @@ IF (BRINGAUTO_INSTALL)
7677 TARGET fleet-http-client-shared
7778 NAMESPACE fleet-http-client-shared::
7879 )
79- BA_PACKAGE_DEPS_IMPORTED(fleet-http-client-shared)
80+ IF (BRINGAUTO_INSTALL_IMPORTED_DEPS)
81+ BA_PACKAGE_DEPS_IMPORTED(fleet-http-client-shared)
82+ ENDIF ()
8083ENDIF ()
8184
8285IF (BRINGAUTO_PACKAGE)
You can’t perform that action at this time.
0 commit comments