From: NAKAMURA Takumi Date: Mon, 27 Jan 2014 17:39:38 +0000 (+0000) Subject: [CMake] Put *_exports into "Misc" folder. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=e684807ac8b9e4f20ac529161c43c30b12b948b2 [CMake] Put *_exports into "Misc" folder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200228 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 2b985c237e4..82a767862b2 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -72,6 +72,7 @@ function(add_llvm_symbol_exports target_name export_file) endif() add_custom_target(${target_name}_exports DEPENDS ${native_export_file}) + set_target_properties(${target_name}_exports PROPERTIES FOLDER "Misc") get_property(srcs TARGET ${target_name} PROPERTY SOURCES) foreach(src ${srcs})