Skip to content
Snippets Groups Projects
Commit 617540d9 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

BUG: special case in regex. filterout headertest

parent fbd61642
No related branches found
No related tags found
No related merge requests found
# This is one big fat if-elseif ladder
# that will detect a type and destination to use in
# install(..
function(install_rule src_file)
get_filename_component(src_file_EXT ${src_file} EXT)
......@@ -19,6 +23,14 @@ function(install_rule src_file)
message("SKIP INSTALL for ${sfile_NAME_LOWER}")
endif()
continue()
#special case for remote modules which has executables
#like MosiacHeaderTest1.exe. This ideally should be
#fixed in remote modules
elseif ("${sfile_NAME_LOWER}" MATCHES "headertest" )
if(PKG_DEBUG)
message("SKIP INSTALL for ${sfile_NAME_LOWER}")
endif()
continue()
elseif("${sfile_ABS_LOWER}" MATCHES "(\\.exe)$")
set(install_type PROGRAMS)
set(install_dir bin)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment