diff --git a/app/apps/CMakeLists.txt b/app/apps/CMakeLists.txt index 888065f214..5c0d61cc3f 100644 --- a/app/apps/CMakeLists.txt +++ b/app/apps/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2024, Arm Limited and Contributors +# Copyright (c) 2020-2026, Arm Limited and Contributors # # SPDX-License-Identifier: Apache-2.0 # @@ -89,3 +89,6 @@ if (IOS) "-framework IOSurface" ) endif () + +set_target_properties(apps PROPERTIES FOLDER "components") + diff --git a/app/plugins/CMakeLists.txt b/app/plugins/CMakeLists.txt index 66443a6de0..e3e77646a8 100644 --- a/app/plugins/CMakeLists.txt +++ b/app/plugins/CMakeLists.txt @@ -1,5 +1,5 @@ #[[ - Copyright (c) 2019-2023, Arm Limited and Contributors + Copyright (c) 2019-2026, Arm Limited and Contributors SPDX-License-Identifier: Apache-2.0 @@ -99,4 +99,5 @@ add_library(plugins OBJECT ${SRC_FILES}) target_include_directories(plugins PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} $ $) target_compile_options(plugins PRIVATE $ $) target_compile_features(plugins PRIVATE $ $) -target_compile_definitions(plugins PRIVATE $ $) \ No newline at end of file +target_compile_definitions(plugins PRIVATE $ $) +set_target_properties(plugins PROPERTIES FOLDER "components") \ No newline at end of file diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index f2098b531c..85654b9112 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -1,4 +1,5 @@ # Copyright (c) 2019-2026, Arm Limited and Contributors +# Copyright (c) 2019-2026, Arm Limited and Contributors # Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 @@ -397,5 +398,10 @@ if(NOT IOS) target_compile_options(vgf PRIVATE -UDEBUG) set_target_properties(vgf PROPERTIES FOLDER "ThirdParty" POSITION_INDEPENDENT_CODE ON) + set_target_properties(flatbuffers PROPERTIES FOLDER "ThirdParty") + set_target_properties(vgf_samples PROPERTIES FOLDER "ThirdParty") + set_target_properties(vgf_schema PROPERTIES FOLDER "ThirdParty") + set_target_properties(vgf-utils PROPERTIES FOLDER "ThirdParty") + set_target_properties(flatc PROPERTIES FOLDER "ThirdParty") endif()