Merge 1.3.6 671:672 into 1.4.2 and trunk

This commit is contained in:
Nick Bolton 2010-06-23 21:42:08 +00:00
parent 1b69fa048c
commit f3b9c39580
1 changed files with 28 additions and 6 deletions

View File

@ -100,13 +100,35 @@ IF(WIN32)
SET(CPACK_PACKAGE_EXECUTABLES qsynergy;Synergy+) SET(CPACK_PACKAGE_EXECUTABLES qsynergy;Synergy+)
ENDIF(WIN32) ENDIF(WIN32)
# For source package, leave out temp and Mercurial stuff. # files to exclude from src package (regex patterns)
# to escape, use 4 backslashes (\\\\) -- yuck!
SET(CPACK_SOURCE_IGNORE_FILES SET(CPACK_SOURCE_IGNORE_FILES
"/bin/" # Temp binary output dir. # temp output dir in root
"/.hg/" # Mercurial repo cache. "/bin/"
"/.hgignore" # Mercurial ignore list (not neede by end-user).
".*~" # Emacs temporary files. # generated config.h file
"/config.h$" # The config.h file should be generated. "/config\\\\.h$"
# buildbot stuff
"\\\\.buildbot\\\\-sourcedata$"
# qt temp build dir
"/gui/tmp/.*"
# qt make file
"/gui/Makefile$"
# qt generated ui headers
"/gui/ui_.*\\\\.h$"
# compiled python files
".*\\\\.pyc$"
# subversion caches (all dirs)
".*/\\\\.svn/.*"
# emacs temporary files
".*~$"
) )
# Must be last (since it relies of CPACK_ vars). # Must be last (since it relies of CPACK_ vars).