1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Reverting r225319; since there is a folder named Examples, attempting to add a target of the same name causes problems for IDEs like Visual Studio.

llvm-svn: 225355
This commit is contained in:
Aaron Ballman 2015-01-07 14:47:12 +00:00
parent a2e327eb27
commit 58509c4247

View File

@ -513,12 +513,6 @@ macro(add_llvm_example name)
install(TARGETS ${name} RUNTIME DESTINATION examples)
endif()
set_target_properties(${name} PROPERTIES FOLDER "Examples")
if(NOT TARGET examples)
add_custom_target(examples DEPENDS ${name})
else()
add_dependencies(examples ${name})
endif()
endmacro(add_llvm_example name)