Imported Upstream version 0.13.2+dsfg1
This commit is contained in:
commit
fb3990e9e5
2036 changed files with 287360 additions and 0 deletions
17
cmake/copy_helper.cmake
Normal file
17
cmake/copy_helper.cmake
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
if(NOT EXISTS "${INPUT}")
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(_do_pass FALSE)
|
||||
foreach(target ${TARGET_CONFIGS})
|
||||
if(target STREQUAL "${CONFIG}" OR target STREQUAL "ALL")
|
||||
set(_do_pass TRUE)
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
if(NOT _do_pass)
|
||||
return()
|
||||
endif()
|
||||
|
||||
file(COPY "${INPUT}" DESTINATION "${OUTPUT}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue