On 7/6/06, Hendrik Belitz <[EMAIL PROTECTED]> wrote:
So the following

SET(CPACK_SOURCE_IGNORE_FILES
"/^CPack.*/"
"/.*\\\\.kdev.*/")

should result in ignoring all files Starting with 'CPack' or containing
'.kdev', right? But why does this not lead to exclusion of files like

'CPackConfig.cmake'

or

'myproject.kdevses' ?

why are you ending each regular expression with '/' ? I haven't tried
any of this, but it seems that your regular expression "/^CPack.*/"
will catch any path containing a *directory* that starts with CPack
(i.e., ".../CPackConfig.cmake/..."), which is not what you want...

Try: "/^CPack.*" and "/.*\\\\.kdev.*"

--Miguel
_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to